圖片上下浮動(類似螞蟻森林能量)

1.以下爲代碼詳情,直接複製即可。

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <title>圖片上下浮動</title>
  <style>
  *{padding:0;margin:0;}
    body{
        position:relative;
           background:#90C0F1;
        overflow:hidden;
    }
    .ghost{
        width:160px;
        margin:100px auto;
        position:relative;
        animation:ghostUpdown 1s infinite alternate;
        -webkit-animation:ghostUpdown 1s infinite alternate;
    }

    @keyframes ghostUpdown{
        from{margin-top:100px;}
        to{margin-top:70px;}
    }
    @-webkit-keyframes ghostUpdown{
        from{margin-top:100px;}
        to{margin-top:70px;}
    }

  </style>
 </head>
 <body>
    <div class="ghost">
        <img src="0.jpg">
    </div>
 </body>
 
</html>

2.更多資源加羣 372319250,或者 https://one.betters.xin訪問更多。

3.源碼下載地址:https://one.betters.xin/index/down/details/id/4.html

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章