当前位置: 首页 > 图文教程 > 网页制作 > HTML/XHTML教程 > 连续滚动的超级链接文字网页代码

HTML/XHTML教程
HTML教程:脚本JS标记script详解
后缀是.shtml的网页文件你知道是什么意思吗?
中文Web设计HTML的em标记使用
IE8开发人员工具的菜单讲解(2)
精确测量网页的软件:FastStone Capture
HTML教程:iframe标记常见的几种使用方法
图片IMG标记的alt属性和title属性
网页中的H1标记的使用注意事项
Webjx推荐下载Photoshop网页按钮源文件
如何把PSD文件制作成XHTML+CSS文件
ASP生成静态Html文件的技术总结
网站建设过程中常见的5个HTML错误
HTML列表标记:dl、dt、dd
网页布局方案:弹性流体布局
真正的离线Web要靠HTML 5
采用列表设计网页的9个好处
连续滚动的超级链接文字网页代码
24个漂亮的个性化HTML表单技术
怎样解决DIV层被Flash动画遮盖问题?
Safari 4浏览器的一些新特性

HTML/XHTML教程 中的 连续滚动的超级链接文字网页代码


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-28   浏览: 98 ::
收藏到网摘: n/a

向上滚动

<div id=”marquees”>
<a href=”#”>软晨学习网一</a><br>
<br>
<a href=”#”>软晨学习网二</a><br>
<br>
<a href=”#”>软晨学习网三</a><br>
<br>
<a href=”#”>软晨学习网四</a>
<br>
</div>
<script language=”JavaScript”>

marqueesHeight=200;
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()”,10);
}
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>

向下滚动

<div id=”marquees”> <a href=”#”>软晨学习网一</a><br>
<br>
<a href=”#”>软晨学习网二</a><br>
<br>
<a href=”#”>软晨学习网三</a><br>
<br>
<a href=”#”>软晨学习网四</a><br>
<br>
</div>
<script language=”JavaScript”>

marqueesHeight=200;

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;getlimit=0;stopscroll=false;

function init(){
templayer.innerHTML=””;
while(templayer.offsetHeight<marqueesHeight){
templayer.innerHTML+=marquees.innerHTML;
}
marquees.innerHTML+=templayer.innerHTML;
setInterval(”scrollDown()”,10);
}init();

function scrollDown(){
if(stopscroll==true) return;

preTop=marquees.scrollTop;
marquees.scrollTop-=1;
if(preTop==marquees.scrollTop){
if(!getlimit){
marquees.scrollTop=templayer.offsetHeight*2;
getlimit=marquees.scrollTop;
}
marquees.scrollTop=getlimit-templayer.offsetHeight+marqueesHeight;
marquees.scrollTop-=1;
}
}
</script>

向左滚动

<div id=”marquees”>
<a href=”#”>软晨学习网一</a>
<a href=”#”>软晨学习网二</a>
<a href=”#”>软晨学习网三</a>
<a href=”#”>软晨学习网四</a>
</div>

<div id=”templayer” style=”position:absolute;left:0;top:0;visibility:hidden”></div>
<script language=”JavaScript”>

marqueesWidth=200;

with(marquees){
style.height=0;
style.width=marqueesWidth;
style.overflowX=”hidden”;
style.overflowY=”visible”;
noWrap=true;
onmouseover=new Function(”stopscroll=true”);
onmouseout=new Function(”stopscroll=false”);
}
preLeft=0; currentLeft=0; stopscroll=false;

function init(){
templayer.innerHTML=””;
while(templayer.offsetWidth<marqueesWidth){
templayer.innerHTML+=marquees.innerHTML;
}
marquees.innerHTML+=templayer.innerHTML;
setInterval(”scrollLeft()”,10);
}init();

function scrollLeft(){
if(stopscroll==true) return;
preLeft=marquees.scrollLeft;
marquees.scrollLeft+=1;
if(preLeft==marquees.scrollLeft){
marquees.scrollLeft=templayer.offsetWidth-marqueesWidth+1;
}
}
</script>

向右滚动

<div id=”marquees”>
<a href=”#”>软晨学习网一</a>
<a href=”#”>软晨学习网二</a>
<a href=”#”>软晨学习网三</a>
<a href=”#”>软晨学习网四</a>
</div>
<div id=”templayer” style=”position:absolute;left:0;top:0;visibility:hidden”></div>
<script language=”JavaScript”>

marqueesWidth=200;

with(marquees){
style.height=0;
style.width=marqueesWidth;
style.overflowX=”hidden”;
style.overflowY=”visible”;
noWrap=true;
onmouseover=new Function(”stopscroll=true”);
onmouseout=new Function(”stopscroll=false”);
}
preTop=0; currentTop=0; getlimit=0; stopscroll=false;

function init(){
templayer.innerHTML=””;
while(templayer.offsetWidth<marqueesWidth){
templayer.innerHTML+=marquees.innerHTML;
}
marquees.innerHTML+=templayer.innerHTML;
setInterval(”scrollRight()”,10);
}init();

function scrollRight(){
if(stopscroll==true) return;

preLeft=marquees.scrollLeft;
marquees.scrollLeft-=1;
if(preLeft==marquees.scrollLeft){
if(!getlimit){
marquees.scrollLeft=templayer.offsetWidth*2;
getlimit=marquees.scrollLeft;
}
marquees.scrollLeft=getlimit-templayer.offsetWidth+marqueesWidth;
marquees.scrollLeft-=1;
}
}
</script>