為什么鼠標(biāo)移到分享位置沒(méi)有動(dòng)畫(huà)
<script type="text/javascript">
?? ??? ??? ?windows.onload =function(){
?? ??? ??? ??? ?var div = document.getElementById('div1')
?? ??? ??? ??? ?div.onmouseover =function(){
?? ??? ??? ??? ??? ?startMove();
?? ??? ??? ??? ??? ?
?? ??? ??? ??? ?}
?? ??? ??? ?}
?? ??? ??? ?function startMove(){
?? ??? ??? ??? ?var div = document.getElementById('div1')
?? ??? ??? ??? ?setInterval(function(){
?? ??? ??? ??? ?div.style.left = div.offsetLeft +10+'px'?? ?
?? ??? ??? ??? ?},30)
?? ??? ??? ?}
?? ??? ?</script>
2019-06-14
是window.onload哦