Created
May 23, 2014 07:33
-
-
Save cycold/4daa0f5e9de79694ba4d to your computer and use it in GitHub Desktop.
compass animate and easing use
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
@charset "utf-8"; | |
//注意animate keyframe 不能嵌套 | |
@include animate-flipOutY; | |
>h1{ | |
width: 200px; | |
height: 200px; | |
background-color: green; | |
@include ceaser-transition(all , 600ms, $easeInOutBack); | |
//@include transition(all 600ms ceaser($easeInOutBack)); | |
&:hover{ | |
//@include transform( scale(1.1) ); | |
@include animation(flipOutY 300ms); | |
//@include animation-name(flipOutY); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment