我发现这样写是不是有一个错误吗?
如果鼠标频发移入移出之后,他会一直自动在onmouseout与onmouserover之间切换事件
这个是为什么呢?
以及解决方案?
补充一下啊,老师的源码是在频繁切换之后,效果就没有了。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>垂直伸缩菜单</title>
<style type="text/css">
ul,li {padding: 0;margin: 0;font-size: 15px;}
ul{list-style: none;height: 30px; border-bottom: 5px solid orange;}
li {float: left;}
a {display: block;width: 120px;height: 30px;line-height: 30px;text-decoration: none;background-color: #ccc;text-align: center;}
ul a:hover, .on {color: #fff;background-color: orange;/*width:140px;*/}
</style>
<script type="text/javascript">
window.onload = function() {
var a = document.getElementsByTagName('a');
for (var i = 0;i < a.length; i++) {
a[i].onmouseover = function() {
clearInterval(changeId);
var aThis = this;
var changeId = setInterval(function() {
aThis.style.width = aThis.offsetWidth + 10 + 'px';
if (aThis.offsetWidth >= 150) {
clearInterval(changeId);
}
console.log("in")
},30)
}
a[i].onmouseout = function() {
clearInterval(changeId);
var aThis = this;
var changeId = setInterval(function() {
aThis.style.width = aThis.offsetWidth - 10 + 'px';
if (aThis.offsetWidth <= 120) {
aThis.style.width = '120px';
clearInterval(changeId);
}
console.log("out")
},30)
}
}
}
</script>
</head>
<body>
<ul>
<li><a class="on" href="#">首 页</a></li>
<li><a href="#">新闻资讯</a></li>
<li><a href="#">产品展示</a></li>
<li><a href="#">售后服务</a></li>
<li><a href="#">联系我们</a></li>
</ul>
</body>
</html>