概述
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta content="text/html charset=utf-8" http-equiv="Content-Type">
<title>Title</title>
<script>
function demo1(){
var content=document.getElementById("content");
var tag=document.getElementById("tag");
var ispeed=5;
timer=null;
time2=null;
tag.onmouseover=content.onmouseover=function (ev) {
clearInterval(timer);
clearInterval(time2);
timer=setInterval(function(){
if(content.offsetLeft>=0){
clearInterval(timer);
}else{
content.style.left=content.offsetLeft+ispeed+"px";
tag.style.left=tag.offsetLeft+ispeed+"px";
}
},30);
}
tag.onmouseout=content.onmouseout=function (ev) {
clearInterval(time2);
clearInterval(timer);
time2=setInterval(function(){
document.title=content.offsetLeft+"";
if(tag.offsetLeft<=0){
clearInterval(time2);
}else{
content.style.left=content.offsetLeft-ispeed+"px";
tag.style.left=tag.offsetLeft-ispeed+"px";
}
},30);
}
}
</script>
<style>
#content{width:100px;height:200px;background-color: #cccccc;position:absolute;top:20px;left:-100px;}
#tag{width:30px;height:80px;background-color: #FFCC00;text-align: center;position:absolute;left:0px;top:50px;}
</style>
</head>
<body>
<div id="content"></div>
<div id="tag">分享到</div>
<script>
demo1();
</script>
</body>
</html>
使用js代码实现的,很少会写js程序,尝试写了一个,处理个半天,
最后
以上就是优秀汉堡为你收集整理的js实现自动隐藏侧边栏的全部内容,希望文章能够帮你解决js实现自动隐藏侧边栏所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复