码迷,mamicode.com
首页 > Web开发 > 详细

JS控制网页图片斜向滚动(图片除了上、下、左、右滚动,还有斜向滚动哦)

时间:2015-05-13 14:46:51      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:js控制网页图片斜向滚动图片除了上下左右   还有斜向滚动哦   

<html>
<head>
<title>背景斜向移动</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body background="http://p18.qhimg.com/t010e15dc26698ab2a8.png">
<script language="Javascript">
<!--
function selectAll(theField){
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
}
//-->
</script>
<script language="Javascript">
<!--
var background = "http://p18.qhimg.com/t010e15dc26698ab2a8.png";
var speed = 0;
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
if (browserName != "Netscape" || browserVer >= 4.5) {
function moveback(movert,movedn,hPos,vPos) {
if (arguments[4])
document.body.style.backgroundImage = "url(\"" + arguments[4] + "\")";
if (arguments[5])
document.body.style.backgroundRepeat = arguments[5]
if (!isNaN(hPos)) {
if ((movert!=0) && (hPos>0)) hPos=-100000
hPos += movert

if (!isNaN(vPos)) {
if ((movedn!=0) && (vPos>0)) vPos=-100000
vPos+= movedn
}
document.body.style.backgroundPosition= hPos + " " + vPos
if (isNaN(hPos)) hPos = "\"" + hPos + "\""
if (isNaN(vPos)) vPos = "\"" + vPos + "\""
setTimeout("moveback("+movert+","+movedn+","+hPos+","+vPos+")",speed)
}
moveback(1,1,0,0, background);
}


//-->
</script> 
<div><A href="http://www.999jiujiu.com/">http://www.999jiujiu.com/</A></div>
</body>
</html>

JS控制网页图片斜向滚动(图片除了上、下、左、右滚动,还有斜向滚动哦)

标签:js控制网页图片斜向滚动图片除了上下左右   还有斜向滚动哦   

原文地址:http://blog.csdn.net/life66881/article/details/45692169

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!