为了账号安全,请及时绑定邮箱和手机立即绑定

请问 为什么给img加了margin之后 调整速度就没有用了呢

请问 为什么给img加了margin之后 调整速度就没有用了呢

lili13 2017-04-22 16:54:44
<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>DIV动起来</title>    <link href="初始化CSS.css" rel="stylesheet" type="text/css"/>    <style>        #div1 {            width: 150px;            height: 150px;            border: 4px solid #00ffff;            border-radius: 50%;            /* margin:50px;*/            position: relative;        }        img {            width: 150px;            height: 150px;            border-radius: 50%;           position: absolute;        }    </style>    <script>        window.onload=function () {            var oBtn=document.getElementById('btn1');            var oDiv=document.getElementById('div1');            var timer=null;            oBtn.onclick=function () {                timer=setInterval( function () {                    if (oDiv.offsetLeft>=400)                        clearInterval(timer);                    oDiv.style.left=oDiv.offsetLeft+1+'px';                },30);            }        }    </script></head><body><input id='btn1' type="button" value="start"/><div id="div1">    <img src="img1/萌.jpeg" alt=""/></div></body></html>
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 1401 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信