慕移动3658766
2017-07-14 14:53
window.onload = function(){
var share = document.getElementById('share'),
content = document.getElementById('content');
share.onmouseover = function(){
share.style.backgroundColor = '#FF0';
shareFun();
};
}
var timer = null;
function shareFun (){
var share = document.getElementById('share'),
content = document.getElementById('content');
// clearInterval(timer);
timer = setInterval(function(){
content.style.left = (content.offsetLeft+10)+'px';
console.log(content.offsetLeft);
},30)
}
感觉你没有明确自己要做什么
share.style.backgroundColor = '#FF0'这句的代码书写格式好像不是这样的吧 记不太清了
1楼的说的也没错 那的确有问题
content.style.left = (content.offsetLeft+10)+'px'; 这句有问题,不用带括号吧?
JS动画效果
113925 学习 · 1443 问题
相似问题