发布网友 发布时间:2022-04-24 01:02
共3个回答
热心网友 时间:2023-10-17 00:40
你插入<marquee align = "top">文字上下移动</marquee>标签,并且这个标签有很多特效,比如,鼠标移上去是停止,连续滚动, 不重复滚动 等
你插入这个标签后 后边的特效的代码都是系统自动生成的,你一个一个的试试,我想会比较深刻呢
如果还不大明白 留言---
热心网友 时间:2023-10-17 00:40
你插入<marquee align = "top">文字上下移动</marquee>标签,并且这个标签有很多特效,比如,鼠标移上去是停止,连续滚动, 不重复滚动 等
你插入这个标签后 后边的特效的代码都是系统自动生成的,你一个一个的试试,我想会比较深刻呢
如果还不大明白 留言---
热心网友 时间:2023-10-17 00:41
其实很简单的,代码如下:
<marquee scrollamount="2" height="80" direction="up" onmouseover="this.stop();" onmouseout="this.start();" style="border:1px solid #CCCCCC;">你的内容</marquee>
这里有演示,你看看效果:
http://www.51maque.cn/2009/qita/236.html
参考资料:http://www.51maque.cn/2009/qita/236.html
热心网友 时间:2023-10-17 00:41
文字向上无缝滚动
<div id=marquees style="height=100px;LEFT: 60px; POSITION: absolute; TOP: 100px;"><font style="font-family:宋体; color:white; font-size:14px;line-height=15px">
<a href="#">你在做什么</a><br>
<br>
<a href="#">我在仰望天空</a><br>
<br>
<a href="#">30度仰望是什么</a><br>
<br>
<a href="#">是我想念她的角度</a><br>
<br>
<a href="#">为什么要把头抬到30度</a><br>
<br>
<a href="#">为了不让我的眼泪掉下来</a><br>
<br>
<br>
<br>
</div>
<script language="JavaScript">
marqueesHeight=100;
stopscroll=false;
with(marquees){
style.width=0;
style.height=marqueesHeight;
style.overflowX="visible";
style.overflowY="hidden";
noWrap=true;
onmouseover=new Function("stopscroll=true");
onmouseout=new Function("stopscroll=false");
}
document.write('<div id="templayer" style="position:absolute;z-index:1;visibility:hidden"></div>');
preTop=0; currentTop=0;
function init(){
templayer.innerHTML="";
while(templayer.offsetHeight<marqueesHeight){
templayer.innerHTML+=marquees.innerHTML;
}
marquees.innerHTML=templayer.innerHTML+templayer.innerHTML;
setInterval("scrollup()",30);
}
document.body.onload=init;
function scrollup(){
if(stopscroll==true) return;
preTop=marquees.scrollTop;
marquees.scrollTop+=1;
if(preTop==marquees.scrollTop){
marquees.scrollTop=templayer.offsetHeight-marqueesHeight;
marquees.scrollTop+=1;
}
}
</script>
热心网友 时间:2023-10-17 00:41
其实很简单的,代码如下:
<marquee scrollamount="2" height="80" direction="up" onmouseover="this.stop();" onmouseout="this.start();" style="border:1px solid #CCCCCC;">你的内容</marquee>
这里有演示,你看看效果:
http://www.51maque.cn/2009/qita/236.html
参考资料:http://www.51maque.cn/2009/qita/236.html
热心网友 时间:2023-10-17 00:41
文字向上无缝滚动
<div id=marquees style="height=100px;LEFT: 60px; POSITION: absolute; TOP: 100px;"><font style="font-family:宋体; color:white; font-size:14px;line-height=15px">
<a href="#">你在做什么</a><br>
<br>
<a href="#">我在仰望天空</a><br>
<br>
<a href="#">30度仰望是什么</a><br>
<br>
<a href="#">是我想念她的角度</a><br>
<br>
<a href="#">为什么要把头抬到30度</a><br>
<br>
<a href="#">为了不让我的眼泪掉下来</a><br>
<br>
<br>
<br>
</div>
<script language="JavaScript">
marqueesHeight=100;
stopscroll=false;
with(marquees){
style.width=0;
style.height=marqueesHeight;
style.overflowX="visible";
style.overflowY="hidden";
noWrap=true;
onmouseover=new Function("stopscroll=true");
onmouseout=new Function("stopscroll=false");
}
document.write('<div id="templayer" style="position:absolute;z-index:1;visibility:hidden"></div>');
preTop=0; currentTop=0;
function init(){
templayer.innerHTML="";
while(templayer.offsetHeight<marqueesHeight){
templayer.innerHTML+=marquees.innerHTML;
}
marquees.innerHTML=templayer.innerHTML+templayer.innerHTML;
setInterval("scrollup()",30);
}
document.body.onload=init;
function scrollup(){
if(stopscroll==true) return;
preTop=marquees.scrollTop;
marquees.scrollTop+=1;
if(preTop==marquees.scrollTop){
marquees.scrollTop=templayer.offsetHeight-marqueesHeight;
marquees.scrollTop+=1;
}
}
</script>