中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用JavaScript怎么實現一個小火箭發射動畫效果

發布時間:2021-04-14 18:09:26 來源:億速云 閱讀:407 作者:Leah 欄目:web開發

這期內容當中小編將會給大家帶來有關使用JavaScript怎么實現一個小火箭發射動畫效果,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

具體如下:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>小火箭發射</title>
  <style type="text/css">
    *{
      margin: 0px;
      padding: 0px;
    }
    .big{
      width: 500px;
      height: 600px;
      border: 1px solid #16283B;
      float: left;
      position: relative;
      background-color: #16283B;
    }
    .btm{
      height: 40px;
      width: 100px;
      background-color: royalblue;
      cursor: pointer;
      border: 1px solid blue;
      float: left;
      position: relative;
      top: 560px;
      left: 40px;
    }
    .btm span{
      line-height: 40px;
      width: 100px;
      display: block;
      text-align: center;
    }
    .bt_stop{
      height: 40px;
      width: 100px;
      background-color: royalblue;
      cursor: pointer;
      border: 1px solid blue;
      float: left;
      position: relative;
      top: 500px;
      left: -60px;
    }
    .bt_stop span{
      line-height: 40px;
      width: 100px;
      display: block;
      text-align: center;
    }
    .rocket{
      position: absolute;
      bottom: 18px;
      left: 180px;
    }
  </style>
  <script type="text/javascript">
    // alert("is work!");
    //任務1 火箭起飛
    //任務2 火箭懸停
    var start;
    function $(id) {
      return document.getElementById(id);
    }
    function fly() {
      start=self.setInterval("fly_do()",10);
    }
    function start_send() {
      alert('start');
      fly();
    }
    function stop() {
      //alert('stop');
      window.clearInterval(start);
    }
    function getBottom(rocket) {
      var bottomf = rocket.style.bottom;
      bottomf = parseInt(bottomf);
      if (!bottomf){
        bottomf=18;
      }
      bottomf++;
      return bottomf;
    }
    function fly_do() {
      //alert("this is fly");
      //通過不斷改變rocket里面的css屬性bottom
      //獲取rocket對象
      var rocket=$("yingshanhao");
      var bottomf=getBottom(rocket);
      //改變屬性
      rocket.style.bottom=bottomf+"px";
      //慢慢飛起來
      //js的時間函數
    }
  </script>
</head>
<body>
    <div class="big">
      <div class="rocket" id="yingshanhao">
        <img src="images/rocket1.jpg"  >
        </div>
      </div>
      <div class="btm" onmouseover="javascript:stop();" onmouseout="javascript:start_send();">
        <span>懸停按鈕</span>
      </div>
      <div class="bt_stop" onclick="javascript:fly();">
        <span>發射按鈕</span>
      </div>
    </div>
</body>
</html>

上述就是小編為大家分享的使用JavaScript怎么實現一個小火箭發射動畫效果了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

建平县| 茌平县| 正镶白旗| 双柏县| 英山县| 三台县| 舟山市| 普陀区| 泰来县| 白河县| 铜梁县| 牡丹江市| 西盟| 闸北区| 汉川市| 松潘县| 辽中县| 郧西县| 施甸县| 永平县| 山西省| 宜兴市| 政和县| 保康县| 米林县| 梁河县| 堆龙德庆县| 宁安市| 宁蒗| 盐边县| 南部县| 长葛市| 宝山区| 滦南县| 什邡市| 利辛县| 高邑县| 红原县| 青海省| 蓬莱市| 毕节市|