<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>班级</title>
<style type="text/css">
.cls_container{border:1px solid #ccc;width:680px;font-size:12px;height:24px;overflow:hidden;}
.cls_container ul{list-style-type:none;margin:0;padding:0;margin-left:32px;}
.cls_container ul li{height:24px;line-height:24px;width:320px;float:left;display:inline;}
</style>
</head>
<body>
<div id="myscroll" class="cls_container">
<ul>
<li><a href=" http://mcs.szpt.edu.cn/Sub/1106/Index">A </a></li>
<li><a href=" http://mcs.szpt.edu.cn/Sub/1106/Index">B </a></li>
<li><a href=" http://mcs.szpt.edu.cn/Sub/1106/Index">C </a></li>
<li><a href=" http://mcs.szpt.edu.cn/Sub/1106/Index">D </a></li>
</ul>
</div>
<div id="showhint"></div>
<script type="text/javascript">
function $(element){
if(arguments.length>1){
for(var i=0,length=arguments.length,elements=[];i<length;i++){
elements.push($(arguments[i]));
}
return elements;
}
if(typeof element=="string"){
return document.getElementById(element);
}else{
return element;
}
}
var Class={
create:function(){
return function(){
this.initialize.apply(this,arguments);
}
}
}
Function.prototype.bind=function(object){
var method=this;
return function(){
method.apply(object,arguments);
}
}
var Scroll=Class.create();
Scroll.prototype={
initialize:function(element,height){
this.element=$(element);
this.element.innerHTML+=this.element.innerHTML;
this.height=height;
this.maxHeight=this.element.scrollHeight/2;
this.counter=0;
this.scroll();
this.timer="";
this.element.onmouseover=this.stop.bind(this);
this.element.onmouseout=function(){this.timer=setTimeout(this.scroll.bind(this),1000);}.bind(this);
},
scroll:function(){
if(this.element.scrollTop<this.maxHeight){
this.element.scrollTop++;
this.counter++;
}else{
this.element.scrollTop=0;
this.counter=0;
}
if(this.counter<this.height){
this.timer=setTimeout(this.scroll.bind(this),20);
}else{
this.counter=0;
this.timer=setTimeout(this.scroll.bind(this),3000);
}
},
stop:function(){
clearTimeout(this.timer);
}
}
var myscroll=new Scroll("myscroll",24);
</script>
</body>
</html>
上面的效果是每次滚动一行 但是这一行却是两个一起
就是先出现A B停顿一下 然后向上滚动出现C D 这样循环
我想问下怎样改才能使它一次只出现一个?我想改成先出现A再出现B再同时出现C D
还有就是停顿的时间是那个参数控制的?
问一个网页代码问题?
答案:2 悬赏:20 手机版
解决时间 2021-07-16 10:11
- 提问者网友:鼻尖触碰
- 2021-07-16 02:59
最佳答案
- 五星知识达人网友:骨子里都是戏
- 2021-07-16 03:58
.cls_container{border:1px solid #ccc;width:680px;font-size:12px;height:24px;overflow:hidden;}
这一行 中的 width:320px 就可以一次显示一项!
var myscroll=new Scroll("myscroll",24); 这一行中的 数字24 可以调整时间的间隔 数字越大越快
全部回答
- 1楼网友:醉吻情书
- 2021-07-16 05:37
设置li的行高就能实现
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯