Skip to content

Instantly share code, notes, and snippets.

@runa-ichinose
Created April 9, 2015 06:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save runa-ichinose/f4de005e8f7395ae2370 to your computer and use it in GitHub Desktop.
Save runa-ichinose/f4de005e8f7395ae2370 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
$setPrefix: -webkit-, -moz-, -o-, null;
body:after {
content:"";
width:100px;
height: 50px;
position: absolute;
top: 25px;
right: 10%;
z-index: 0;
background: url(../img/neko.png) no-repeat;
@each $prefix in $setPrefix {
#{$prefix}animation-duration: 3.5s;
#{$prefix}animation-timing-function: linner;
#{$prefix}animation-interation-count: 1;
#{$prefix}animation-name: headerBGAnima;
}
}
body:after {
content: "";
width: 100px;
height: 50px;
position: absolute;
top: 25px;
right: 10%;
z-index: 0;
background: url(../img/neko.png) no-repeat;
-webkit-animation-duration: 3.5s;
-webkit-animation-timing-function: linner;
-webkit-animation-interation-count: 1;
-webkit-animation-name: headerBGAnima;
-moz-animation-duration: 3.5s;
-moz-animation-timing-function: linner;
-moz-animation-interation-count: 1;
-moz-animation-name: headerBGAnima;
-o-animation-duration: 3.5s;
-o-animation-timing-function: linner;
-o-animation-interation-count: 1;
-o-animation-name: headerBGAnima;
animation-duration: 3.5s;
animation-timing-function: linner;
animation-interation-count: 1;
animation-name: headerBGAnima;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment