jQuery banner切换插件

今天学写了一个基于jQuery焦点图切换插件,有不对的地方还请多多指教,不多说下面是代码:

 

1、引jQuery库

<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>

 

2、Html部分

<!--Focus Html-->
<div class="s_focus"><ul class="f_img"><li style="background-image:url(http://www.cnhippo.com/images/new_room.jpg);"><a href="#"></a></li><li style="background-image:url(http://www.cnhippo.com/images/christmas_day.jpg);"><a href="#"></a></li><li style="background-image:url(http://www.cnhippo.com/images/reg_banner.jpg);"><a href="#"></a></li></ul>
</div>

 

3、CSS部分

<style>
/*Test - Can be deleted*/
*    { margin:0; padding:0; list-style:none;}
body { padding-top:50px;}/*CSS*/
.s_focus            { position:relative; z-index:1; width:100%; min-width:940px; height:350px; padding:1px 0; border:1px solid #d9d9d9; border-width:1px 0; overflow:hidden;}
.s_focus .f_img     { display:block; position:relative; z-index:1; width:100%; height:100%;}
.s_focus .f_dot     { display:block; position:absolute; z-index:3; left:50%; bottom:15px; width:100px; height:10px; overflow:hidden;}
.s_focus .f_d_bg    { position:absolute; z-index:2; width:100%; height:40px; left:0; bottom:1px; _bottom:0; background:#FFF; filter:alpha(opacity=30); opacity:0.3; box-shadow:0 -1px 3px #999;}
.f_img li         { display:none;  position:absolute; z-index:2; top:0; left:0; width:100%; height:100%; background:#fff no-repeat center 0;}
.f_img li.on      { display:block;}
.f_img li a       { display:block; width:100%; height:100%;}
.f_dot a          { float:left; display:block; width:10px; height:100%; margin-right:10px; border-radius:50%; background:#ccc; filter:alpha(opacity=30); opacity:1; overflow:hidden;}
.f_dot a.on,
.f_dot a:hover    { background:#09f;}
.s_focus .f_prev,
.s_focus .f_next   { display:none; position:absolute; top:50%; filter:alpha(opacity=15); opacity:0.15; width:36px; height:70px; margin-top:-35px; background:#000; z-index:5; color:#fff; text-decoration:none; line-height:70px; text-align:center; font-family:"宋体"; font-size:18px;}
.s_focus .f_prev   { left:50px;}
.s_focus .f_next   { right:50px;}
.s_focus .f_next:hover,
.s_focus .f_prev:hover { filter:alpha(opacity=25); opacity:0.25;}
</style>

 

4、JS插件部分

<script>
/**** Copyright (c) 2015 http://www.cnblogs.com/cymmint/* Ver: SFocus() 0.1* Date: 2015-01-05* Author: cymmint* Function: SFocus是基本jQuery的banner(焦点图)切换插件,可以通过参数配置Box宽高,* 点的大小、位置,是否显示Prev,Next,Dot以及Dot背景条,* 首次显示等几张banner等*/
(function($){$.fn.SFocus = function(opts){var defaults = {oBoxWidth : "100%", //Silde width
            oBoxHeight: 350, //Silde heigh
            isOpenDBg : false, //open dot background bar
            isOpenDot : true, //open do
            isOpenPN  : true, //open prev/next
            dotWidth  : 10, //dot width
            dotHeight : 10, //dot heigh
            dotLeft   : "50%", //dot left offse
            dotBottom : 16, //dot bottom offse
            time      : 3500, //cut time interval
            onset     : 0, //Silde focus img onset index
            cutEvent  : "mouseenter" //Slide dot cut even
            };var opts = $.extend(defaults, opts);return this.each(function(){var obox     = $(this),img      = obox.find("ul.f_img li"),sum      = img.length,cur_id   = opts.onset >= sum ? 0 : opts.onset,new_id   = cur_id == sum-1 ? 0 : cur_id+1,T        = 0;//Html init 
            init(obox, sum, cur_id);//Dot cutif(opts.isOpenDot) {var dot = obox.find("div.f_dot a");dot.on(opts.cutEvent, function(){clearInterval(T);if ($(this).hasClass("on")) {return false;}cur_id = img.parent().find(".on").index();new_id = $(this).index();cut(cur_id, new_id, img, dot);});}//Prev&Next cutif(opts.isOpenPN) {var prev = obox.find("a.f_prev"),next = obox.find("a.f_next");prev.on("click", function(){clearInterval(T);cur_id = img.parent().find(".on").index();new_id = cur_id - 1;new_id = new_id < 0 ? sum-1 : new_id;cut(cur_id, new_id, img, dot);});next.on("click", function(){clearInterval(T);cur_id = img.parent().find(".on").index();new_id = cur_id + 1;new_id = new_id >= sum ? 0 : new_id;cut(cur_id, new_id, img, dot);});}obox.hover(function(){clearInterval(T);if(opts.isOpenPN) {prev.show();next.show();}}, function(){T = setInterval(function(){ auto(img, dot, sum);}, opts.time);if(opts.isOpenPN) {prev.hide();next.hide();}});//Slide run auto
            T = setInterval(function(){ auto(img, dot, sum);}, opts.time);});//Slide run autofunction auto(img, dot, sum){var cur_id = img.parent().find(".on").index(),new_id = cur_id + 1;new_id = new_id >= sum ? 0 : new_id;cut(cur_id, new_id, img, dot);}//Slide cutfunction cut(cur_id, new_id, img, dot){if(opts.isOpenDot) {dot.removeClass("on").eq(new_id).addClass("on");}img.eq(cur_id).stop(true, false).fadeOut(300);img.eq(new_id).stop(true, true).fadeIn(300);img.removeClass("on").eq(new_id).addClass("on");}//Html initfunction init(obox, sum, cur_id){var htm = "",dot,img;if(opts.isOpenDBg) {htm = '<div class="f_d_bg"></div>';}if(opts.isOpenDot) {htm += '<div class="f_dot">';for(var i=0; i<sum; i++) {htm += i == cur_id ? '<a class="on" href="javascript:;"></a>' : '<a href="javascript:;"></a>';}htm += '</div>';}if(opts.isOpenPN) {htm += '<a class="f_prev" href="javascript:;">&lt;</a><a class="f_next" href="javascript:;">&gt;</a>';}obox.append(htm);img = obox.find("ul.f_img");dot = obox.find("div.f_dot");if (!$.support.leadingWhitespace) {obox.find("a").attr("hidefocus", true);}obox.css({"width":opts.oBoxWidth, "height":opts.oBoxHeight});img.children().removeClass("on").eq(cur_id).addClass("on")dot.children().css({"width":opts.dotWidth, "height":opts.dotHeight});dot.css({"width":dot.children().eq(0).outerWidth(true) * sum, "height":opts.dotHeight, "left":opts.dotLeft, "bottom":opts.dotBottom, "marginLeft": -(dot.width()-10)/2});
        }}})(jQuery);
</script>

 

5、引用插件

<script>
$(function(){$("div.s_focus").SFocus({oBoxWidth : 500,oBoxHeight: 300});
});
</script>

 

6、全部代码

这是最新修改后的代码,上面的就不改了

<!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" />
<title>Focus</title>
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script></head><body><!--Focus Html-->
<div class="s_focus"><ul class="f_img"><li style="background-image:url(http://www.cnhippo.com/images/new_room.jpg);"><a href="#"></a></li><li style="background-image:url(http://www.cnhippo.com/images/christmas_day.jpg);"><a href="#"></a></li><li style="background-image:url(http://www.cnhippo.com/images/reg_banner.jpg);"><a href="#"></a></li></ul>
</div><style>
/*Test - Can be deleted*/
*    { margin:0; padding:0; list-style:none; outline:none;}
body { padding-top:50px;}/*CSS*/
.s_focus            { position:relative; z-index:1; width:100%; min-width:940px; height:350px; padding:1px 0; border:1px solid #d9d9d9; border-width:1px 0; overflow:hidden;}
.s_focus .f_img     { display:block; position:relative; z-index:1; width:100%; height:100%;}
.s_focus .f_dot     { display:block; position:absolute; z-index:3; left:50%; bottom:15px; width:100px; height:10px; overflow:hidden;}
.s_focus .f_d_bg    { position:absolute; z-index:2; width:100%; height:40px; left:0; bottom:1px; _bottom:0; background:#FFF; filter:alpha(opacity=30); opacity:0.3; box-shadow:0 -1px 3px #999;}
.f_img li         { display:none; position:absolute; z-index:1; top:0; left:0; width:100%; height:100%; background:#fff no-repeat center 0;}
.f_img li a       { display:block; width:100%; height:100%;}
.f_dot a          { float:left; display:block; width:10px; height:100%; margin-right:10px; border-radius:50%; background:#ccc; overflow:hidden;}
.f_dot a.on,
.f_dot a:hover    { background:#09f;}
.s_focus .f_prev,
.s_focus .f_next   { display:none; position:absolute; top:50%; filter:alpha(opacity=15); opacity:0.15; width:36px; height:70px; margin-top:-35px; background:#000; z-index:5; color:#fff; text-decoration:none; line-height:70px; text-align:center; font-family:"宋体"; font-size:18px;}
.s_focus .f_prev   { left:50px;}
.s_focus .f_next   { right:50px;}
.s_focus .f_next:hover,
.s_focus .f_prev:hover { filter:alpha(opacity=25); opacity:0.25;}
</style><script>
$(function(){$("div.s_focus").SFocus({oBoxWidth : 500,oBoxHeight: 300,onset : 2});
});
</script><script>
/**** Copyright (c) 2015 http://www.cnblogs.com/cymmint/* Ver: SFocus() 0.2* Date: 2015-01-06* Author: cymmint* Function: SFocus是基本jQuery的banner(焦点图)切换插件,可以通过参数配置Box宽高,* 点的大小、位置,是否显示Prev,Next,Dot以及Dot背景条,* 首次显示等几张banner等*/
(function($){$.fn.SFocus = function(opts){var defaults = {oBoxWidth : "100%", //Silde width
            oBoxHeight: 350, //Silde heigh
            isOpenDBg : false, //open dot background bar
            isOpenDot : true, //open do
            isOpenPN  : true, //open prev/next
            dotWidth  : 10, //dot width
            dotHeight : 10, //dot heigh
            dotLeft   : "50%", //dot left offse
            dotBottom : 16, //dot bottom offse
            time      : 3500, //cut time interval
            onset     : 0, //Silde focus img onset index
            cutEvent  : "mouseenter" //Slide dot cut even
            };var opts = $.extend(defaults, opts);return this.each(function(){var obox     = $(this),img      = obox.find("ul.f_img li"),sum      = img.length,cur_id   = opts.onset >= sum ? 0 : opts.onset,new_id   = cur_id == sum-1 ? 0 : cur_id+1,T        = 0;//Html init 
            init(obox, sum, cur_id);//Dot cutif(opts.isOpenDot) {var dot = obox.find("div.f_dot a");dot.on(opts.cutEvent, function(){clearInterval(T);if ($(this).hasClass("on")) {return false;}cur_id = img.parent().find(".on").index();new_id = $(this).index();cut(cur_id, new_id, img, dot);});}//Prev&Next cutif(opts.isOpenPN) {var prev = obox.find("a.f_prev"),next = obox.find("a.f_next");prev.on("click", function(){clearInterval(T);cur_id = img.parent().find(".on").index();new_id = cur_id - 1;new_id = new_id < 0 ? sum-1 : new_id;cut(cur_id, new_id, img, dot);});next.on("click", function(){clearInterval(T);cur_id = img.parent().find(".on").index();new_id = cur_id + 1;new_id = new_id >= sum ? 0 : new_id;cut(cur_id, new_id, img, dot);});}obox.hover(function(){clearInterval(T);if(opts.isOpenPN) {prev.show();next.show();}}, function(){T = setInterval(function(){ auto(img, dot, sum);}, opts.time);if(opts.isOpenPN) {prev.hide();next.hide();}});//Slide run auto
            T = setInterval(function(){ auto(img, dot, sum);}, opts.time);});//Slide run autofunction auto(img, dot, sum){var cur_id = img.parent().find(".on").index(),new_id = cur_id + 1;new_id = new_id >= sum ? 0 : new_id;cut(cur_id, new_id, img, dot);}//Slide cutfunction cut(cur_id, new_id, img, dot){if(opts.isOpenDot) {dot.removeClass("on").eq(new_id).addClass("on");}img.finish();img.removeClass("on");img.eq(cur_id).css("zIndex", 1);img.eq(new_id).addClass("on").css("zIndex",2);img.eq(new_id).stop(true, false).fadeIn(500, function(){img.eq(cur_id).hide();});}//Html initfunction init(obox, sum, cur_id){var htm = "",dot,img;if(opts.isOpenDBg) {htm = '<div class="f_d_bg"></div>';}if(opts.isOpenDot) {htm += '<div class="f_dot">';for(var i=0; i<sum; i++) {htm += i == cur_id ? '<a class="on" href="javascript:;"></a>' : '<a href="javascript:;"></a>';}htm += '</div>';}if(opts.isOpenPN) {htm += '<a class="f_prev" href="javascript:;">&lt;</a><a class="f_next" href="javascript:;">&gt;</a>';}obox.append(htm);img = obox.find("ul.f_img");dot = obox.find("div.f_dot");if (!$.support.leadingWhitespace) {obox.find("a").attr("hidefocus", true);}obox.css({"width":opts.oBoxWidth, "height":opts.oBoxHeight});img.children().eq(cur_id).addClass("on").css({"display":"list-item", "zIndex":2});dot.children().css({"width":opts.dotWidth, "height":opts.dotHeight});dot.css({"width":dot.children().eq(0).outerWidth(true) * sum, "height":opts.dotHeight, "left":opts.dotLeft, "bottom":opts.dotBottom, "marginLeft": -(dot.width()-10)/2});
        }}})(jQuery);
</script></body>
</html>
展开全部

 

转载于:https://www.cnblogs.com/cymmint/p/4204592.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/292129.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

DispatcherCore ,一个WPF异步操作常用功能库

在WPF开发中&#xff0c;经常遇到跨线程的问题&#xff0c;以及频繁使用跨线程操作UI线程中的界面元素&#xff0c;一些COM组件操作也是必须在UI主线程中使用&#xff0c;否则就会抛出各种无法访问的错误。是否有遇到过呢&#xff1f;为了解决各种跨线程访问的问题&#xff0c;…

Linux:文件描述符

1. 概述在Linux系统中一切皆可以看成是文件&#xff0c;文件又可分为&#xff1a;普通文件、目录文件、链接文件和设备文件。文件描述符&#xff08;file descriptor&#xff09;是内核为了高效管理已被打开的文件所创建的索引&#xff0c;其是一个非负整数&#xff08;通常是小…

Objective-C入门

厂长最近又有新计划&#xff0c;准备做iOS上的开发&#xff0c;要操作工们&#xff08;其实就是我自己&#xff09;学习Objective-C&#xff0c;准备为厂子下一步的发展做出巨大贡献。拿人钱财&#xff0c;替人消灾&#xff0c;又得花时间折腾一门语言。话说自从来到现车间&…

linux c之用fwrite和fread实现文件的复制

1、题目 用fwrite和fread函数实现文件的复制 2、函数解释 #include<stdio.h> size_t fread(void *ptr, size_t size, size_t nmemb, FILE *FP); size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *FP); 2个函数返回:读或写的对象数 fread函数用于执行直…

想象中的论文答辩和真实的论文答辩,哈哈哈哈哈哈……

全世界只有3.14 % 的人关注了爆炸吧知识本文来源&#xff1a;冷兔&#xff08;lengtoo&#xff09;整理自网络&#xff0c;图源见水印毕业季即将来临&#xff0c;放眼朋友圈&#xff0c;大家都在为毕业论文答辩忙碌。论文答辩可以说是校园生活的最后一站&#xff0c;是毕业论文…

python总线 rabbitmq_python - 操作RabbitMQ

介绍RabbitMQ是一个在AMQP基础上完整的&#xff0c;可复用的企业消息系统。他遵循Mozilla Public License开源协议。MQ全称为Message Queue,消息队列(MQ)是一种应用程序对应用程序的通信方法。应用程序通过读写出入队列的消息(针对应用程序的数据)来通信&#xff0c;而无需专用…

JavaScript闭包学习笔记

闭包&#xff08;closure&#xff09;是JavaScript语言的一个难点&#xff0c;也是它的特色&#xff0c;很多高级应用都要依靠闭包实现。 下面就是我的学习笔记&#xff0c;对于JavaScript初学者应该是很有用的。 一、变量的作用域 要理解闭包&#xff0c;首先必须理解JavaScri…

ABP vNext微服务架构详细教程——架构介绍

总体架构所有应用服务、API网关、身份认证服务均部署在Kubernetes容器中&#xff0c;由Kubernetes提供应用配置、服务治理、服务监控等功能。客户端所有访问均通过Kubernetes的Nginx-Ingress接入服务集群&#xff0c;并由API网关负责路由匹配和身份认证后转发至相应的应用服务处…

wireshark远程抓包

2019独角兽企业重金招聘Python工程师标准>>> 配置ssh证书 在本地机器创建公钥ssh-keygen -t rsa -C your_emaildomain.com将公钥复制到ssh服务器 scp ~/.ssh/id_rsa.pub usernamehostname:~/ #将公钥文件复制至ssh服务器 ssh usernamehostname #使用用户名和密码方…

BO QUERY BUILDER - SI_INSTANCE相关属性

概念&#xff1a;一个instance分为runnable(schedule生成&#xff0c;用于在recurring时间点创建其他Instance), 非runnable&#xff08;runnable instance生成的结果&#xff09;。SI_INSTANCE SI_INSTANCE_OBJECT SI_RUNNABLE_OBJECT验证通过select * from ci_infoobjects …

linux c之出现warning: implicit declaration of function ‘exit’ [-Wimplicit-function-declaration]这个问题

1、问题&#xff1a; 2、解决办法&#xff1a; 先执行下面命令看exit在哪个头文件下面 man exit 效果如下图 加上头文件编译&#xff0c;问题就解决了 3、 总结 如果看到编译的时候提示wall,我们首先是找到报警搞的函数&#xff0c;再用man 命令来 man 函数&#xff0c;然后找…

中大博士偷偷做了这件事,今天终于曝光了...

全世界只有3.14 % 的人关注了爆炸吧知识今天不谈其它说说心里的话大家好&#xff0c;我是超模君。做数学科普这么久&#xff0c;一直都很感谢大家的支持。不知不觉&#xff0c;超模君原创的文章已经有1000多篇了。不敢说做了多大的工作&#xff0c;但假如各位能从中学到一点东西…

python mssql github_GitHub上最热门的开源项目都在这里了

最近整理了一些在GitHub上比较热门的开源项目关于GitHub&#xff0c;快速了解请戳这里其中涵盖了&#xff1a;学习教程&#xff0c;面试总结&#xff0c;实用工具&#xff0c;框架&#xff0c;机器学习等东西比较杂&#xff0c;要学的东西也比较多&#xff0c;先存着&#xff0…

.NET6之MiniAPI(十):基于策略的身份验证和授权

JWT不管是基于角色&#xff0c;还是自定义策略&#xff0c;实现的步骤都是大同小异的&#xff0c;基于自定义策略的步骤如下&#xff1a;1、appsettings.json中配置JWT参2、添加身份认证和授权服务和中间件&#xff0c;并设置为策略模式和策略名称3、定义生成Token的方法和验证…

K均值算法总结

这几天在一个项目上需要用到K均值聚类算法&#xff0c;以前都是直接利用百度老师copy一个Kmeans算法代码&#xff0c;这次想自己利用已知的算法思想编写一下&#xff0c;编写才知道&#xff0c;虽然熟悉了算法思想&#xff0c;真正实现时&#xff0c;还是遇到不少bug&#xff0…

linux c之创建进程fork和vfork函数之间的区别

1、函数简介 1)、得到当前的进程id pid_t getpid(); 2)、fork函数 要创建进程,必须调用fork函数, 系统调用fork用于派生一个进程,函数原型如下 #include<sys/types.h>#include<unistd.h>pid_t fork(void) 若成功,父进程中返回子进程id,子进程返回0;若…

前端几个笔试题及答案(bd)

1. 行内元素、块级元素和空元素&#xff08;void&#xff09;举例。 块级元素&#xff1a;<address>、<caption>、<dd>、<div>、<dl>、<dt>、<fieldset>、<form>、<h1>、<h2>、<h3>、<h4>、<h5&…

架构设计:远程调用服务架构设计及zookeeper技术详解(上篇)

一、序言 Hadoop是一个技术生态圈&#xff0c;zookeeper是hadoop生态圈里一个非常重要的技术&#xff0c;当我研究学习hadoop的相关技术时候&#xff0c;有两块知识曾经让我十分的困惑&#xff0c;一个是hbase&#xff0c;一个就是zookeeper&#xff0c;hbase的困惑源自于它在颠…

据说很多女生都想知道男生是如何上厕所的?

1 老婆守恒定律&#xff08;素材来源网络&#xff0c;侵删&#xff09;▼2 捡破烂的狗子&#xff08;via.李市民&#xff0c;侵删&#xff09;▼3 见过最搞笑的买药经历&#xff08;素材来源豆瓣yuyii&#xff0c;侵删&#xff09;▼4 男朋友的室友可以多粘人&#xff1f;&a…

【云图】如何设置支付宝里的家乐福全国连锁店地图?

【云图】如何设置支付宝里的家乐福全国连锁店地图&#xff1f; 原文:【云图】如何设置支付宝里的家乐福全国连锁店地图&#xff1f; 摘要&#xff1a;本文详细讲解了&#xff0c;如何设置支付宝服务窗。商家如何将自己的全国连锁店放置到云图上&#xff0c;并且在支付宝服务窗中…