我有一個動畫GIF文件作爲我的div的背景圖像,這是從Photoshop保存只循環一次。所以它唯一播放的時間就是頁面的原始負載。如何在每個頁面刷新/加載時創建「循環一次」動畫GIF背景播放?
是否有任何方法從本質上刪除背景圖像並將其添加到頁面刷新?幾乎讓DOM認爲這是一個新的圖像,從而再次循環它?
這裏的DIV:
<div id="name-logo"></div>
和css:
position: relative;
width: 403px;
height: 93px;
margin: 50px auto 100px;
background-image: url(my.gif);
background-position: center;
background-size: contain;
background-repeat: no-repeat;
感謝
哇,像變魔術一樣的背景圖片! –