我是靠谱客的博主 糟糕小鸭子,最近开发中收集的这篇文章主要介绍js跑马灯代码(自写),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

复制代码 代码如下:

function cls_marquee(id,id1,id2,sp){
this.obj_id=id;
this.obj_id1=id1;
this.obj_id2=id2;
this.speed=sp;
eval(this.obj_id2+".innerHTML="+this.obj_id1+".innerHTML");
function Marquee(){
if(eval(id2).offsetTop-eval(id).scrollTop<=0)
eval(id).scrollTop-=eval(id1).offsetHeight
else{
eval(id).scrollTop++
}
}
var MyMar=setInterval(Marquee,sp)
eval(this.obj_id).onmouseover=function() {clearInterval(MyMar)}
eval(this.obj_id).onmouseout=function() {MyMar=setInterval(Marquee,sp)}
}

自己刚写的一个小程序,写得满一般的。。。。不过这个接口还成
复制代码 代码如下:

<script type="text/javascript" >
function show() {
var info = document.getElementById('Text1');
info.value = info.value.substr(1) + info.value[0];
}
setInterval(show, 500);
function show1() {
var info1 = document.getElementById('Text2');
info1.value = info1.value[info1.value.length-1] + info1.value.substr(0, info1.value.length-1);
}
setInterval(show1, 500);
</script>
<input id="Text1" type="text" value="欢迎来测试" />
<input id="Button1" type="button" value="滚动"/><br />
<input id="Text2" type="text" value="北京欢迎您" />
<input id="Button2" type="button" value="滚动" onclick="show1()" />

最后

以上就是糟糕小鸭子为你收集整理的js跑马灯代码(自写)的全部内容,希望文章能够帮你解决js跑马灯代码(自写)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(121)

评论列表共有 0 条评论

立即
投稿
返回
顶部