Posts Tagged “Web”
Setting Up Umami as Your Google Analytics Alternative: A Step-by-Step Guide
Umami offers a user-friendly and privacy-focused alternative to the ubiquitous Google Analytics. As an open-source web analytics tool, it provides you with…
Refactor your blog comments system with Webmention.io
As a blogger, you know how important it is to engage with your audience and facilitate meaningful discussions around your content. Traditional comment…
How to use tailwindcss with AMP in a Next.js project
Recently, I was refactoring my blog using Next.js by a whim. There are 3 tech stacks I would use...
Web 前端中的增强现实(AR)开发技术
本文作者 GeekPlux,首发于前端外刊评论-Web 前端中的增强现实(AR)开发技术,博客地址:http://geekplux.com/2018/01/18/augmented-reality-development-tech-in-web-frontend 。注明作者和地址即可转载。 增强现实(以下简称…
D3 force layout and WebGL integration
原文地址:https://geekplux.com/2017/06/27/d3-force-and-webgl-integration D3 是目前最流行的数据可视化库,WebGL 是目前 Web 端最快的绘制技术。由于性能问题的局限,将两者结合的尝试越来越多(如),本文将尝试用 D3 的力导向图 和…
Backbone View 之间通信的三种方式
原文地址:https://geekplux.com/2015/07/04/communicating-between-views-in-backbone 掌握一个 MVC 框架,最关键的一节就是掌握如何在各个 View 之间通信。之前用 Angular 时,觉得基于事件的通信方式 ($on, $emit,…
CoffeeScript 编码风格指南(译)
这份指南阐述了一些 [CoffeeScript][coffeescript] 的最佳实践和编码惯例。 这份指南是社群驱动的,非常鼓励大家来贡献内容。 请注意这还是一份正在完善的指南:仍有很多地方可以改进,有些已制定的准则也不一定是社区惯用的(基于此,在适当的情况下,这些有待斟酌的准则将有可能被修改或删除。)…
CoffeeScript 笔记
原文地址:https://geekplux.com/2014/05/15/coffeescript note 最近读了《CoffeeScript程序设计》的前半部分「核心 CoffeeScript」。对 CoffeeScript 也是有了初步的了解,本文只是我的随手笔记,并没有非常系统的总结…
CSS 最核心的几个概念
原文地址:https://geekplux.com/2014/04/25/several core concepts of css 本文将讲述 CSS 中最核心的几个概念,包括:盒模型、position、float等。这些是 CSS…
响应式设计简易指南(译)
原文地址:https://geekplux.com/2014/04/06/simple guide to responsive design 为什么要使用响应式设计? 我们想让我们的网站通过响应用户的行为、设备的屏幕大小和屏幕方向,从而在所有设备上都能用。 一个碎片化的世界…
Collapsing margins——合并的外边距
原文地址:https://geekplux.com/2014/03/14/collapsing margins 昨天在写 CSS 时遇到一个小问题,困扰了我好长时间,最后 Google 之,发现早有前人踩过此坑。为免以后再掉进坑,记下来比较好。 昨天遇到的问题是这样的。我设置了一对父子元素如下:…
CSS 编写原则
原文地址:https://geekplux.com/2014/02/20/css written principles CSS 写的好可以让网页瞬间高大上,但是再高大上的网站如果效率很低也不行,尤其是在近几年「用户体验」这个词烂大街以后。前两天自己写了几个页面的 CSS,顺便拜读了很多关于 CSS…