Skip to content

Instantly share code, notes, and snippets.

@304352303
Forked from csssecrets/dabblet.css
Created February 11, 2018 03:55
Show Gist options
  • Save 304352303/44ca46a48683433102362aca73314f94 to your computer and use it in GitHub Desktop.
Save 304352303/44ca46a48683433102362aca73314f94 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: running;
}
.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