Search results for make animated progress circles using circliful Scripts fewliveasync.js

How-To: Make Animated Progress Circles Using Circliful

by Tyler Longren

…Tyler Longren demonstrates the use of Circliful to make circular statistic indicators using a JQuery plugin. A jQuery Plugin for Making Circles Circliful has a number of options that…

Picture showing a magazine layout with columns of different heights

CSS Regions Matter

by Brian Rinaldi

…of CSS. Of course, make sure the class names and IDs match those of the elements on the page you’re using them for. Since, at this time, only a subset…

A JavaScript Build System Shootout: Grunt vs. Gulp vs. NPM

by Nicolas Bevacqua

…just CLI tools. In fact, npm is able to run any shell script. Let’s dig into that! Using shell scripts in npm tasks Below is an example script that runs…

Taming Asynchronous JavaScript Programming with ECMAScript6

by Brian Rinaldi

…underscore = require(‘underscore’) string = require(‘underscore.string’) linklib = require(‘linklib’) { using, _ } = require(‘./chain’).chain.init() using(jQuery) using(underscore) using(string) using(console) using(linklib) getUser = (user) -> _(“https://npmjs.org/~#{user}”) .get() .extractLinks() .filter( -> /package/.test(arguments[0])…

Building a Parallax Scrolling Game with Pixi.js – Part 3

by Brian Rinaldi

…By Christopher Caleb Welcome back to the third in a series of tutorials covering how to make a parallax scrolling map using JavaScript and pixi.js. A lot’s been covered…

Creating Particles in HTML5 Canvas

by Donovan Hutchinson

…By Donovan Hutchinson Canvas is an exciting new way to create animated content for the web. With it you can create eye-catching animation in the web browser using only…

Writing a Command Line Utility using Node

by Brian Rinaldi

…up lib/calc.js and adding this line at the top: #! /usr/bin/env node This tells the script it needs to be executed using Node. At the moment if we type calc…

Soma.js – Your Way Out of Chaotic JavaScript

by Brian Rinaldi

…call us, we’ll call you”. This is exactly how it works in soma.js. Entities ask for their dependencies using properties and/or constructor parameters. Using dependency injection implies creating rules, so…

Roll Your Own Asset Pipeline with Gulp

by Brian Rinaldi

…[‘less’, ‘scripts‘], function() { gulp.watch(‘css/**/*.less’, [‘less’]); gulp.watch(‘src/**/*.js‘, [‘scripts‘]); }); Rev This is my favorite part of using Gulp. Rev will give you that friendly app-ef62e7.js filename output that Asset Pipeline…

5 Things You Should Stop Doing With jQuery

by Burke Holland

…don’t need document ready (function($) { $(“#zack”).css(“color”, “green”); $(“#slator”).css(“color”, “red”); }(jQuery)); </script> <p id=”slater”>This element comes after the scripts and won’t be available.</p> 2. Stop Using The Wrong Iterator I’ve…