移动端代码怎么写( 二 )


. a.写入要移动的文字! 注:粉色数字可以变换,黄色为颜色代码,可以查阅《HTML颜色代码》效果如下:写入要移动的文字!b.这个向左移动! 效果如下:这个向左移动!还有来回走啊,移动一下听一下等等,可以自己套用上面的代码就OK啦 感谢您的阅读欢迎转载引用 。
5.随网页移动的QQ客服代码要怎样写<SCRIPT LANGUAGE=javascript>
<!--
function window_onscroll() {
floatAD1.style.posTop=document.body.scrollTop;
}
//-->
</SCRIPT>
<style>
#floatAD1{position:absolute;left:0;top:0;}
</style>
<body LANGUAGE=javascript onscroll="return window_onscroll()" >
<div id=floatAD1><img src="http://www.xuexi88.com/zhishi/test2.jpg"></div>
<pre>
把网页撑足够高就出来了
</pre>
</body>
这种代码网上多的是
6.谁能帮我编写个文字移动html代码<style type="text/css">
a{font-size:12px;color:#F00;margin:30px;}
a:link, a:visited{text-decoration:none;}
a:hover {text-decoration:underline;}
</style>
<body>
<table width="800px" height="30" border="1" cellpadding="0" cellspacing="0" bordercolor="#666666">
<tr>
<td><Marquee direction=left onm ouseover=this.stop() onm ouseout=this.start() scrollamount=3 scrollDelay=4 width=800 Height=20>
<img src="http://www.xuexi88.com/zhishi/arrow_right.gif" ><a href="http://www.xuexi88.com/zhishi/#" title="呵呵呵呵" target="_blank" style="font-size:12px;color:#F00;">;呵呵呵呵</a>
<img src="http://www.xuexi88.com/zhishi/arrow_right.gif" ><a href="http://www.xuexi88.com/zhishi/#" title="呵呵呵呵呵呵" target="_blank" style="font-size:12px;color:#F00;">;呵呵呵呵</a>
<img src="http://www.xuexi88.com/zhishi/arrow_right.gif" ><a href="http://www.xuexi88.com/zhishi/#" title="呵呵呵呵呵呵呵呵" target="_blank" style="font-size:12px;color:#F00;">;呵呵呵呵</a>
<img src="http://www.xuexi88.com/zhishi/arrow_right.gif" ><a href="http://www.xuexi88.com/zhishi/#" title="呵呵呵呵呵呵呵呵呵呵" target="_blank" style="font-size:12px;color:#F00;">;呵呵呵呵</a>
</Marquee></td>
</tr>
</table>
</body>
7.求窗口移动的html代码var imgTopMargin = -40;
var imgSpeed = 15;
var timeSpeed = 200;
var hLimit = 0;
var timer;
function checkImg()
{
var reTimer = timeSpeed;
if(document.body.offsetHeight > hLimit)
{
var startPoint = parseInt(document.all.sImg.style.top,10);
var endPoint = document.body.scrollTop;
endPoint = (imgTopMargin <= endPoint ) ? endPoint - imgTopMargin : 0;
if(startPoint != endPoint)
{
moveAmount = Math.ceil(Math.abs(endPoint - startPoint) / 15);
document.all.sImg.style.top = parseInt(document.all.sImg.style.top,10) + ((endPoint<startPoint) ? -moveAmount : moveAmount);
reTimer = imgSpeed;
}
}
else
{
document.all.sImg.style.top = 0;
}
timer=setTimeout("checkImg();",reTimer);
}
function initImg()
{
document.all.sImg.style.top = document.body.scrollTop;
【移动端代码怎么写】checkImg();
}