Skip to content

Instantly share code, notes, and snippets.

@csssecrets
Created October 6, 2014 09:35
Show Gist options
  • Save csssecrets/b7b53efcc2f933ca6d54 to your computer and use it in GitHub Desktop.
Save csssecrets/b7b53efcc2f933ca6d54 to your computer and use it in GitHub Desktop.
Smooth state animations
/**
* Smooth state animations
* Photo credits: https://www.flickr.com/photos/employtheskinnyboy/3904743709
*/
@keyframes panoramic {
to { background-position: 100% 0; }
}
.panoramic {
width: 150px; height: 150px;
background: url('http://c3.staticflickr.com/3/2671/3904743709_74bc76d5ac_b.jpg');
background-size: auto 100%;
animation: panoramic 10s linear infinite alternate;
animation-play-state: paused;
}
.panoramic:hover, .panoramic:focus {
animation-play-state: running;
}
<div class="panoramic"></div>
// alert('Hello world!');
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment