Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
UI
|
输入
|
媒体
|
导航
|
其他
|
网页模板
|
APP模板
|
常用代码
|
在线代码
背景
对话框和灯箱
筛选及排序
反馈
弹出层
悬停
布局
图表
加载
圆边
滚动
标签
文本链接
工具提示
网络类型
拾色器
定制和风格
日期和时间
拖和放
通用输入
自动完成
密码
投票率
搜索
选择框
快捷键
触摸
丰富的输入
上传
验证
音频和视频
幻灯片和轮播图
图片展示
图像
地图
滑块和旋转
Tabs
水平导航
垂直导航
文件树
分页
手风琴菜单
其他导航
动画效果
浏览器调整
移动
独立的部件
杂项
游戏
PROMULGATOR
宋仲基小jj
广东省
关注作者
(1)
收藏此代码
(128)
← “展开收起”效果(CSS世界)
→ 快速实现网页内容可复制
相关代码
轮播图
轮播图
(原创)
jQuery
轮播图
jQuery
轮播图
轮播图
(原创)
jQuery
轮播图
jQuery
轮播图
Html
Css
Js
11111
22222
33333
44444
/*图片轮播*/ (function($) { slideplayer = function(object, config) { this.obj = object; this.n = 0; this.j = 0; var _this = this; var t; var defaults = { width: "586px", height: "346px", fontsize: "12px", right: "0px", bottom: "10px", time: "5000" }; this.config = $.extend(defaults, config); this.count = $(this.obj + " li").size(); this.factory = function() { //元素定位 $(this.obj).css({ position: "relative", zIndex: "0", margin: "0", padding: "0", width: this.config.width, height: this.config.height, overflow: "hidden" }); $(this.obj).prepend( "
" ); $(this.obj + " li") .css({ position: "absolute", top: "0", left: "0", width: "100%", height: "100%", overflow: "hidden" }) .each(function(i) { $(_this.obj + " div").append("
" + (i + 1) + "
"); }); $(this.obj + " img").css({ border: "none", width: "100%", height: "100%" }); this.resetclass(this.obj + " div a", 0); //标题背景 $(this.obj).prepend("
"); $(this.obj + " .dkTitleBg").css({ position: "absolute", margin: "0", padding: "0", zIndex: "1", bottom: "0", left: "0", width: "100%", height: _this.height, background: "#cc0055", overflow: "hidden" }); //插入标题 $(this.obj).prepend("
"); $(this.obj + " p").each(function(i) { $(this) .appendTo($(_this.obj + " .dkTitle")) .css({ position: "absolute", margin: "0", padding: "0", zIndex: "2", bottom: "0", left: "0", width: "100%", height: "32px", lineHeight: "32px", textIndent: "10px", textDecoration: "none", fontSize: _this.size, color: "#FFFFFF", background: "#000", opacity: "0.6", overflow: "hidden" }); if (i != 0) { $(this).hide(); } }); this.slide(); this.addhover(); t = setInterval(this.autoplay, this.config.time); }; //图片渐影 this.slide = function() { $(this.obj + " div a").mouseover(function() { _this.j = $(this).text() - 1; _this.n = _this.j; if (_this.j >= _this.count) { return; } $(_this.obj + " li:eq(" + _this.j + ")") .fadeIn("200") .siblings("li") .fadeOut("200"); $(_this.obj + " .dkTitle p:eq(" + _this.j + ")") .show() .siblings() .hide(); _this.resetclass(_this.obj + " div a", _this.j); }); }; //滑过停止 this.addhover = function() { $(this.obj).hover( function() { clearInterval(t); }, function() { t = setInterval(_this.autoplay, _this.config.time); } ); }; //自动播放 this.autoplay = function() { _this.n = _this.n >= _this.count - 1 ? 0 : ++_this.n; $(_this.obj + " div a") .eq(_this.n) .triggerHandler("mouseover"); }; //翻页函数 this.resetclass = function(obj, i) { $(obj).css({ float: "left", marginRight: "5px", width: "16px", height: "16px", lineHeight: "16px", textAlign: "center", fontWeight: "800", fontSize: "12px", color: "#000", background: "#FFFFFF", cursor: "pointer" }); $(obj) .eq(i) .css({ color: "#FFFFFF", background: "#ff5400", textDecoration: "none" }); }; this.factory(); }; })(jQuery); new slideplayer("#slideplay", { width: "376px", height: "296px", fontsize: "14px", time: "5000" });
↑上面代码改变,会自动显示代码结果 jQuery调用版本:
1.10.2
立即下载
jQuery轮播图(原创)
代码描述:简单的jQuery轮播图
0
最新
发表评论
全部评论
暂时没有评论!
登录后才可以评论
30秒后在评论吧!
发表评论
回复
取消回复
<!doctype html> <html> <head> <meta charset="utf-8"> <title>jQuery轮播图(原创)-jq22.com</title> <script src="https://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script> <style>
</style> </head> <body>
<script>
</script>
</body> </html>
2012-2021 jQuery插件库版权所有
jquery插件
|
jq22工具库
|
网页技术
|
广告合作
|
在线反馈
|
版权声明
沪ICP备13043785号-1
浙公网安备 33041102000314号