Skip to content

Instantly share code, notes, and snippets.

@cycold
Created May 23, 2014 07:33
Show Gist options
  • Save cycold/4daa0f5e9de79694ba4d to your computer and use it in GitHub Desktop.
Save cycold/4daa0f5e9de79694ba4d to your computer and use it in GitHub Desktop.
compass animate and easing use
@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