https://github.com/sha-red/compass-mixins/tree/master/lib extended with more sass frameworks and as django app.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

60 lines
1.3 KiB

// ---------------------------------------------------------------------------
@include keyframes(bounceOut) {
0% {
@include scale(1); }
25% {
@include scale(0.95); }
50% {
opacity: 1;
@include scale(1.1); }
100% {
opacity: 0;
@include scale(0.3); } }
// ---------------------------------------------------------------------------
@include keyframes(bounceOutUp) {
0% {
@include translateY(0); }
20% {
opacity: 1;
@include translateY(20px); }
100% {
opacity: 0;
@include translateY(-2000px); } }
// ---------------------------------------------------------------------------
@include keyframes(bounceOutDown) {
0% {
@include translateY(0); }
20% {
opacity: 1;
@include translateY(-20px); }
100% {
opacity: 0;
@include translateY(2000px); } }
// ---------------------------------------------------------------------------
@include keyframes(bounceOutLeft) {
0% {
@include translateX(0); }
20% {
opacity: 1;
@include translateX(20px); }
100% {
opacity: 0;
@include translateX(-2000px); } }
// ---------------------------------------------------------------------------
@include keyframes(bounceOutRight) {
0% {
@include translateX(0); }
20% {
opacity: 1;
@include translateX(-20px); }
100% {
opacity: 0;
@include translateX(2000px); } }