• 08-简单动画


    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <title>Document</title>
      <style>
        body {
          margin: 0;
        }
        #box {
          position: relative;
          background-color: red;
          width: 100px;
          height: 100px;
        }
      </style>
    </head>
    <body>
      <input type="button" value="开始" id="btn">
      <div id="box"></div>
      <script>
        // 1 点击按钮,让盒子能够向右移动
        var btn = document.getElementById('btn');
        var box = document.getElementById('box');
        btn.onclick = function () {
          // // style.left 获取的是标签中的style属性设置的样式属性的值
          // // 如果标签中的style没有设置该样式属性,我们获取到的是空字符串
          // console.log(box.style.left);
          // // 10px10px  当我们给样式属性设置非法的值,浏览器会帮我们过滤掉
          // console.log(box.style.left + 10 + 'px');
          // box.style.left = box.style.left + 10 + 'px';
          // 
          // 
          // 获取盒子当前的位置  offsetLeft  offsetTop
          // box.style.left = box.offsetLeft + 10 + 'px';
          // 
          // box.offsetLeft 只读属性
          // 
          // 2 让盒子不停的向右移动
          // 循环的速度非常非常非常快,瞬间循环100次
          // for (var i = 0; i < 100; i++) {
          //   box.style.left = box.offsetLeft + 5 + 'px';
          // }
          
    
          var timerId = setInterval(function () {
            // 让盒子停在500px的位置
            // 判断盒子当前的位置是否到达500
            // 
            // 最终盒子停止的位置
            var target = 600;
            // 步进
            var step = 6;
            if (box.offsetLeft >= target) {
              // 停止定时器
              clearInterval(timerId);
              // 设置横坐标为500
              box.style.left = target + 'px';
              console.log(box.style.left);
              // 退出函数
              return;
            }
            box.style.left = box.offsetLeft + step + 'px';
            console.log(box.style.left);
          }, 30);
        }
        
      </script>
    </body>
    </html>
    别废话,拿你代码给我看。
  • 相关阅读:
    多线程ExecutorService 的理解与使用
    MySql索引
    HttpURLConnection和HttpClient使用
    httpclient调用接口
    几个linux命令
    面试之自定义字符串操作
    C和C++中struct的区别
    如何根据端口号查看占用进程
    linux和window如何发布服务
    MYSQL中GROUP_CONCAT和CONCAT函数配合使用
  • 原文地址:https://www.cnblogs.com/lvxueyang/p/13707404.html
Copyright © 2020-2023  润新知