This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <h3>box-shadow animations using currentColor</h3> | |
| <i>(?) hover mouse over the block for 1 second</i> | |
| <br/><br/> | |
| <div class="block transitioned">Transitioned <span style="color: green;">(Expexted)</span></div> | |
| <div class="block animated">Animated (Wrong)</div> | |
| <hr/> | |
| more tests... | |
| <br/><br/> | |
| <div class="block animated2">Animated2</div> | |
| <div class="block animated3" type="button">Animated3</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // el - dom img element with specified src attribute | |
| // angle - angle to rotate the image (in degrees) | |
| function rotateImg(el,angle){ | |
| var img = document.createElement("img"); | |
| img.onload = function(){ | |
| var w = img.width; | |
| var h = img.height; | |
| var a = angle*(Math.PI/180); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #--- | |
| # iPIN - iPhone PNG Images Normalizer v1.0 | |
| # Copyright (C) 2007, 2012 | |
| # | |
| # Author: | |
| # Alexander Freas | |
| # www.sashimiblade.com | |
| # alex@sashimiblade.com | |
| # | |
| # |
NewerOlder