How to show animated image from PNG image using javascript? [ like gmail ]

前端 未结 6 1461
南笙
南笙 2020-11-28 03:06

First of all,check out this image
\"wink\"
Gmail uses this image to display the

6条回答
  •  温柔的废话
    2020-11-28 03:27

    CSS @keyframes can be used in this case

    @keyframes smile {
        0% { background-postiion: 0 -16px;}
        5% { background-postiion: 0 -32px;}
        10% { background-postiion: 0 -48px;}
        /*...etc*/
    }
    

提交回复
热议问题