一段文字滚动的网页制作代码
解决时间 2021-06-02 08:36
- 提问者网友:听门外雪花风
- 2021-06-01 11:55
就是放一行文字在上面,使文字从右往左滚动,要求连续的滚动
最佳答案
- 五星知识达人网友:往事隔山水
- 2021-06-01 13:15
<body><marquee behavior="scroll" direction="left" scrollamount="6" width="780" height="100%" onmousemove="this.stop()" onmouseout="this.start()">输入你所想写的字</marquee><body>
高底快慢或者从左右转动都可以调
全部回答
- 1楼网友:山有枢
- 2021-06-01 15:04
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<style type="text/css">
<!--
#demo {
background: #FFF;
overflow:hidden;
border: 1px dashed #CCC;
width: 400px;
}
#indemo {
float: left;
width: 800%;
}
#demo1 {
float: left;
}
#demo2 {
float: left;
}
-->
</style>
向左滚动
<div id="demo">
<div id="indemo">
<div id="demo1">
AA_BB_CC_DD_EE_FF_GG_HH_II_JJ_KK_LL_MM_NN_
</div>
<div id="demo2"></div>
</div>
</div>
<script>
<!--
var speed=10;
var tab=document.getElementById("demo");
var tab1=document.getElementById("demo1");
var tab2=document.getElementById("demo2");
tab2.innerHTML=tab1.innerHTML;
function Marquee(){
if(tab2.offsetWidth-tab.scrollLeft<=0)
tab.scrollLeft-=tab1.offsetWidth
else{
tab.scrollLeft++;
}
}
var MyMar=setInterval(Marquee,speed);
tab.onmouseover=function() {clearInterval(MyMar)};
tab.onmouseout=function() {MyMar=setInterval(Marquee,speed)};
-->
</script>
</body>
</html>
- 2楼网友:深街酒徒
- 2021-06-01 14:36
<div id=demo pic/1.jpg" width="156" height="200" /><img src="pic/2.jpg" width="160" height="198" /><img src="pic/3.jpg" width="155" height="200" /><img src="pic/4.jpg" width="157" height="200" /></td><td id=demo2 valign=top></td></tr></table></div>
<script>
var speed=30
demo2.innerHTML=demo1.innerHTML
function Marquee(){
if(demo2.offsetWidth-demo.scrollLeft<=0)
demo.scrollLeft-=demo1.offsetWidth
else{
demo.scrollLeft++
}
}
var MyMar=setInterval(Marquee,speed)
demo.onmouseover=function() {clearInterval(MyMar)}
demo.onmouseout=function() {MyMar=setInterval(Marquee,speed)}
</script>
把图片的地方改成文字
设置一下宽度
- 3楼网友:从此江山别
- 2021-06-01 13:40
我要举报
大家都在看
推荐资讯