效果展示
1.页面截图
2.相关效果
html 页面
从微信读书上找了几张书籍封面来做轮播的图片。
index.html
<body> <div id="container"> <div class="big_pic_div"> <div class="prev"></div> <div class="next"></div> <a href="javascript:;" rel="external nofollow" rel="external nofollow" class="mark_left"></a> <a href="javascript:;" rel="external nofollow" rel="external nofollow" class="mark_right"></a> <div class="big_pic" style="z-index: 1;"><img src="/UploadFiles/2021-04-02/1.jpg">css 样式
grid 布局的 gap 不兼容 IE,惹不起。
style.css
body { margin: 0; padding: 0; background: skyblue; } #container { position: relative; overflow: hidden; width: 350px; height: 390px; margin: 50px auto 0; padding: 0 15px; background: goldenrod; box-shadow: 2px 1px 5px 1px #666; } .mark_left { position: absolute; left: 0; z-index: 3000; width: 65px; height: 360px; } .mark_right { position: absolute; right: 0; z-index: 3000; width: 65px; height: 360px; } .prev { position: absolute; top: 150px; left: 5px; z-index: 3001; width: 60px; height: 60px; background: url(img/btn.gif) olivedrab; /* transform: translateY(50%); */ /* alpha 兼容IE8及以下的IE浏览器 */ filter: alpha(opacity=0); opacity: 0; } .next { position: absolute; top: 120px; right: 5px; z-index: 3001; width: 60px; height: 60px; background: url(img/btn.gif) olivedrab; background-position-y: 60px; transform: translateY(50%); filter: alpha(opacity=0); opacity: 0; } .big_pic_div { position: relative; width: 250px; height: 360px; padding: 15px 0; } .big_pic { position: absolute; /* height 从 0 到 360px 下滑 */ overflow: hidden; height: 360px; box-shadow: 1px 1px 2px #777; } .small_pic_div { display: grid; grid-template: repeat(6, 110px) / 80px; gap: 15px; position: absolute; top: 0; left: 273px; padding: 15px 0; } .small_pic { height: 110px; filter: alpha(opacity = 60); opacity: 0.6; } .small_pic img { width: 80px; height: 100%; }JavaScript 实现
多物体运动框架
move.js// 获取样式 function getStyle(obj, name) { if (obj.currentStyle) { // IE... return obj.currentStyle[name]; } else { // Chrome... return getComputedStyle(obj, false)[name]; } } function startMove(obj, attr, target) { clearInterval(obj.timer); obj.timer = setInterval(function () { var cur = 0; // 透明度 if (attr == 'opacity') { cur = Math.round(parseFloat(getStyle(obj, 'opacity')) * 100); } else { cur = parseInt(getStyle(obj, attr)); } // 缓冲运动,速度和距离成正比 var speed = 0; speed = (target - cur) / 6; // 1px 是最小的,1.9px 会被当做 1px;得把速度取整,不然并未真正到达目标值 target speed = speed > 0 "htmlcode">window.onload = function () { var markLeft = document.getElementsByClassName('mark_left')[0]; var markRight = document.getElementsByClassName('mark_right')[0]; var btnPrev = document.getElementsByClassName('prev')[0]; var btnNext = document.getElementsByClassName('next')[0]; var smallPicDiv = document.getElementsByClassName('small_pic_div')[0]; var smallPic = document.getElementsByClassName('small_pic'); var bigPic = document.getElementsByClassName('big_pic'); var nowZIndex = 2; var now = 0; var container = document.getElementById('container'); // 左右按钮透明度设置 btnPrev.onmouseover = markLeft.onmouseover = function () { startMove(btnPrev, 'opacity', 100); }; btnPrev.onmouseout = markLeft.onmouseout = function () { startMove(btnPrev, 'opacity', 0); }; btnNext.onmouseover = markRight.onmouseover = function () { startMove(btnNext, 'opacity', 100); }; btnNext.onmouseout = markRight.onmouseout = function () { startMove(btnNext, 'opacity', 0); }; // 点击小图时,大图自动切换 for (var i = 0; i < smallPic.length; i++) { smallPic[i].index = i; smallPic[i].onclick = function () { if (now == this.index) return; // 使用 now 来表示当前选择的小图,当前选中的小图再次点击时不会让大图下滑 now = this.index; bigPic[this.index].style.zIndex = nowZIndex++; bigPic[this.index].style.height = 0; startMove(bigPic[this.index], 'height', 360); // 点击后其他小图变透明,当前选中的为不透明 for (var i = 0; i < smallPic.length; i++) { startMove(smallPic[i], 'opacity', 60); } startMove(smallPic[this.index], 'opacity', 100); }; // 鼠标移动到小图上时,淡入淡出 smallPic[i].onmouseover = function () { startMove(this, 'opacity', 100); }; smallPic[i].onmouseout = function () { if (now != this.index) { startMove(this, 'opacity', 60); } }; } // tab 函数:当前选中图片不透明;图片下滑;小图区域的滚动 function tab() { bigPic[now].style.zIndex = nowZIndex++; for (var i = 0; i < smallPic.length; i++) { startMove(smallPic[i], 'opacity', 60); } startMove(smallPic[now], 'opacity', 100); bigPic[now].style.height = 0; startMove(bigPic[now], 'height', 360); if (now == 0) { startMove(smallPicDiv, 'top', 0); } else if (now == smallPic.length - 1) { startMove(smallPicDiv, 'top', -(now - 2) * (smallPic[0].offsetHeight + 15)); } else { startMove(smallPicDiv, 'top', -(now - 1) * (smallPic[0].offsetHeight + 15)); } } // 左右按钮点击 btnPrev.onclick = function () { now--; if (now == smallPic.length) { now = smallPic.length - 1; } else if (now < 0) { now = smallPic.length - 1; // return; } tab(); }; btnNext.onclick = function () { now++; if (now == smallPic.length) { now = 0; } tab(); }; var timer = setInterval(btnNext.onclick, 3000); container.onmouseover = function () { clearInterval(timer); }; container.onmouseout = function () { timer = setInterval(btnNext.onclick, 3000); }; };以上就是JavaScript 实现轮播图特效的详细内容,更多关于JavaScript 轮播图的资料请关注其它相关文章!
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
暂无评论...
稳了!魔兽国服回归的3条重磅消息!官宣时间再确认!
昨天有一位朋友在大神群里分享,自己亚服账号被封号之后居然弹出了国服的封号信息对话框。
这里面让他访问的是一个国服的战网网址,com.cn和后面的zh都非常明白地表明这就是国服战网。
而他在复制这个网址并且进行登录之后,确实是网易的网址,也就是我们熟悉的停服之后国服发布的暴雪游戏产品运营到期开放退款的说明。这是一件比较奇怪的事情,因为以前都没有出现这样的情况,现在突然提示跳转到国服战网的网址,是不是说明了简体中文客户端已经开始进行更新了呢?
更新日志
2024年11月05日
2024年11月05日
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]