没有合适的资源?快使用搜索试试~ 我知道了~
本文实例讲述了JS图片定时翻滚效果实现方法。分享给大家供大家参考,具体如下: <!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=utf-8" /> <meta http-e
资源详情
资源评论
资源推荐
JS图片定时翻滚效果实现方法图片定时翻滚效果实现方法
本文实例讲述了JS图片定时翻滚效果实现方法。分享给大家供大家参考,具体如下:
<!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=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=7" />
<title>图片向上翻滚效果</title>
<style type="text/css">
.father{
position:relative;
overflow:hidden;
height:100px;
width:300px;
}
.box {
float: left;
font-size: 12px;
width: 80px;
height: 120px;
overflow: hidden;
position:absolute;
}
</style>
<script language="javascript" type="text/javascript">
var t;
window.onload = function(){
var o = document.getElementById('box');
t = window.setInterval(function(){
scrollup(o, 24, 0);
}, 3000)
}
///滚动主方法
///参数:o 滚动块对象
///参数:d 每次滚屏高度
///参数:c 当前已滚动高度
function scrollup(o, d, c){
if (d == (c - 78 )) {
var t = getFirstChild(o.firstChild).cloneNode(true);
o.removeChild(getFirstChild(o.firstChild));
o.appendChild(t);
t.style.marginTop = "0px";
}
else {
c += 1;
getFirstChild(o.firstChild).style.marginTop = -c + "px";
window.setTimeout(function(){
scrollup(o, d, c)
}, 15);
}
}
//解决firefox下会将空格回车作为节点的问题
function getFirstChild(node){
while (node.nodeType != 1) {
node = node.nextSibling;
}
return node;
}
</script>
</head>
<body>
滚动定时效果演示
<hr>
<div class="father">
<div id="box">
<div class="item">
<img src="../img/head/1.png"/>
</div>
<div class="item">
<img src="../img/head/2.png"/>
</div>
<div class="item">
<img src="../img/head/3.png"/>
</div>
<div class="item">
等你下课⊙▽⊙
- 粉丝: 291
- 资源: 962
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- gadget驱动研究论文
- 组装式箱式变电站3款工程图机械结构设计图纸和其它技术资料和技术方案非常好100%好用.zip
- rongxin11111111
- 116395807409340大猫vb登陆器.apk
- Win11操作系统高效快捷键全面指南
- Windows 10快捷键大全:提升工作效率的操作指南
- 2024年最全Nmap扫描技术与案例集锦(15类场景,102种命令)
- DigiShow 教程1 基本概念
- DigiShow 教程2 软件安装使用入门
- DigiShow 教程3 信号映射
- DigiShow 教程4 软件常用操作
- 小戴人工智能PurposeAI-20241205分词字符集识别的程序的详细解释 (第三版)
- SARibbon-qt
- EasyCode-sql server
- brightnessUI-ubuntu
- Pyqt5-pyqt5
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
评论0