相思资源网 Design By www.200059.com
虽然,用jQuery实现banner图的各种效果十分简单快捷,但是我今天用css+js代码实现了几个banner图的常用功能,效果还不错。
此次,主要想实现以下功能:
1. banner图循环不间断切换
2. 通过自制按钮实现指定性banner图的切换
3. 通过方向按钮实现banner图左/右定向依次切换
4. 当banner图存在onmouseover事件时,停止banner切换,当存在onmouseout时继续切换
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> #banner{ width: 716.8px; height: 537.6px; background-color: aquamarine; margin: 100px auto; position: relative; font-size: 0px; /*清除img图片间的回车符产生的间隔*/ overflow: hidden; } #banner #bannerImg{ width: 100%; position: absolute; top: 0px; left: 0px; white-space: nowrap; /*使这个图片能一行显示*/ transition:all 1s linear; } #banner #bannerImg .img{ width: 100%; } #banner #bannerButton{ font-size: 16px; color: white; position: absolute; bottom: 10px; left: 20px; } #banner #bannerButton .Button{ border-radius: 9px; border: none; outline: none; cursor: pointer; background-color: #7FFFD4; } #banner #bannerButtonAside .div1{ position: absolute; right: 10px; top: 50%; margin-top: -32px; cursor: pointer; } #banner #bannerButtonAside .div2{ position: absolute; left: 10px; top: 50%; margin-top: -32px; cursor: pointer; } </style> </head> <body> <!--实现 左右按钮,1234,自动滑动,鼠标停上显示小手不动 暂停。--> <section id="banner" onmouseover="changeStop()" onmouseout="changeStart()"> <!--以下是我们的banner图--> <div id="bannerImg"> <img class="img" src="/UploadFiles/2021-04-02/c95d7b9676ae739cccfc55457b93fe9c.jpg">但是经过博主的测试,发现程序存在一定的瑕疵,第一张图片的保留时间比其他图片长,而且每次重新开启定时器均存在这个问题。暂时博主还没有比较简单
省事的方法改良他,所以仅供参考思路,以后要用,当然还是jQuery省事啦!
如果存在错误,欢迎朋友们指出,我们一起探讨,改良代码!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
标签:
js,banner
相思资源网 Design By www.200059.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
相思资源网 Design By www.200059.com
暂无原JS实现banner图的常用功能的评论...