s.gif

    1. @keyframes panoramic {
    2. to {
    3. background-position: 100% 0;
    4. }
    5. }
    6. .panoramic {
    7. width: 150px;
    8. height: 150px;
    9. background: url("10.jfif");
    10. background-size: auto 100%;
    11. animation: panoramic 10s linear infinite alternate;
    12. animation-play-state: paused;
    13. }
    14. .panoramic:hover,
    15. .panoramic:focus {
    16. animation-play-state: running;
    17. }