Radial image cover

Your HTML markup <div class=”holder”> <img src=”http://lorempixel.com/500/500/sports/”/> <div class=”radial”></div> </div> Your CSS .holder { width: 500px; height: 500px; position: relative; } .radial […]

Cross browser image grayscale filter

img.grayscale { filter: url(“data:image/svg+xml;utf8,&lt;svg xmlns=\’http://www.w3.org/2000/svg\’&gt;&lt;filter id=\’grayscale\’&gt;&lt;feColorMatrix type=\’matrix\’ values=\’0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 […]

Pulse animation

Create a circle and animate it forever! .cirlce { border: 1px solid #777; border-radius: 100%; height: 30px; width: 30px; background-color: #eee; animation: […]