Created
October 29, 2012 06:34
-
-
Save bhargav2785/3971952 to your computer and use it in GitHub Desktop.
transform::skew effect
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
/** | |
* transform::skew effect | |
**/ | |
.ani-border-width{ | |
position: relative; | |
margin: 50px; | |
width:200px; | |
height: 200px; | |
background-color: steelblue; | |
line-height: 200px; | |
text-align: center; | |
font-size: 28px; | |
display: block; | |
-webkit-animation: myAnimation 1s infinite alternate; | |
} | |
@-webkit-keyframes myAnimation{ | |
from { -webkit-transform: skew(45deg, 45deg) } | |
to { -webkit-transform: skew(-45deg, -45deg) } | |
} |
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
<div class="ani-border-width">hi</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
{"view":"separate","fontsize":"60","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment