Simple AngularJS running on JSFiddle

You need to set some things up in jsFiddle for this to work. First, on the left panel, under “Frameworks & Extensions”, select “No wrap – in <body>”. Now, under “Fiddle Options”, change “Body tag” to <body ng-app=’myApp’> In the JS panel, initiate your module: var app = angular.module(‘myApp’, []); Check it out: http://jsfiddle.net/VSph2/1/

CSS ONLY Animate Draw Circle with border-radius and transparent background

This is my solution. I set a background on body to show it is transparent body { background: repeating-linear-gradient(45deg, white 0px, lightblue 100px); height: 500px; background-size: 500px 500px; background-repeat: no-repeat; } html { height: 100%; } #container { position: absolute; width: 400px; height: 400px; border: solid red 1px; animation: colors 4s infinite; } #halfclip { … Read more