Trianglify is a javascript library for generating colorful triangle meshes that can be used as SVG images and CSS backgrounds. Quite like these computer generated patterns 🙂 Trianglify →
Tag Archives: link
HalfStyle: Style Half of a Character by CSS
Sparked by the question “Is it possible to apply CSS to half of a character?” on StackOverflow, HalfStyle was created: HalfStyle is a set of advanced CSS rules that allow styling each half or third of a character, vertically or horizontally, independently and individually. Works on any dynamic text, or a single character, and is …
Continue reading “HalfStyle: Style Half of a Character by CSS”
Reading Position Indicator
Lately I’ve seen quite a few websites that have some kind of an indicator to display the current reading position (how much you have “read”, depending on how far you have scrolled down an article). In this article, we’ll focus on a technique that uses a horizontal progress bar as the indicator. But instead of …
Parallax Done Right
Parallax has become, for better or worse, an increasingly popular web trend. Done right, it feels awesome. The problem is, a vast majority of sites using parallax suffer from terrible scroll performance. A good refresher on how to do high performance animations Parallax Done Right → Related: High Performance Animations → 2D transform’s translate() vs …
PHP and Continuous Integration with Travis CI
Travis CI automatically sets up a CI environment and makes it simple for anyone to test and deploy their app. Their build system supports many different languages, you just have to define which language this project is and Travis CI will take care of the rest Good article by Sitepoint on getting started with Travis …
Continue reading “PHP and Continuous Integration with Travis CI”
Administering ArcGIS for Server
Administering ArcGIS for Server teaches you the mechanics of ArcGIS for Server, equipping you with the skills to not only install and configure Server, but to do it efficiently to achieve effective results. You will also learn how to plan, analyze, design, and finally publish and consume GIS services from various platforms including mobile and …
Isomer – An isometric graphics library for HTML5 canvas
var Shape = Isomer.Shape; var Point = Isomer.Point; iso.add([ Shape.Prism(Point.ORIGIN, 3, 3, 1), Shape.Pyramid(new Point(0, 0, 1)), Shape.Pyramid(new Point(0, 2, 1)), Shape.Pyramid(new Point(2, 0, 1)), Shape.Pyramid(new Point(2, 2, 1)) ]); Did somebody out there recreate Monument Valley using this yet? Isomer →