码迷,mamicode.com
首页 > 其他好文 > 详细

Html5添加支持桌面、移动触摸手机和平板电脑的Lightbox插件教程

时间:2016-01-08 15:14:01      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:

一、使用方法
首先在<body>标签之前或<header>标签中引入jquery和swipebox js文件。
<script src="lib/jquery-2.0.3.js"></script>
<script src="src/js/jquery.swipebox.js"></script>

在<header>标签中引入swipebox.css文件。
<link rel="stylesheet" href="src/css/swipebox.css">

二、Html结构
<a href="big/image.jpg" class="swipebox" title="My Caption">
<img src="small/image.jpg" alt="image">
</a>

三、调用插件
<script type="text/javascript">
;( function( $ ) {
$( ’.swipebox’ ).swipebox();
} )( jQuery );
</script>

四、高级配置
(1)画廊
<a rel="gallery-1" href="big/image1.jpg" class="swipebox">
<img src="small/image1.jpg" alt="image">
</a>
<a rel="gallery-1" href="big/image2.jpg" class="swipebox">
<img src="small/image2.jpg" alt="image">
</a>

<!-- Gallery 2 -->
<a rel="gallery-2" href="big/image3.jpg" class="swipebox">
<img src="small/image3.jpg" alt="image">
</a>
<a rel="gallery-2" href="big/image4.jpg" class="swipebox">
<img src="small/image4.jpg" alt="image">
</a>

(2)视频支持
<a class="swipebox-video" rel="vimeo" href="http://vimeo.com/29193046">My Videos</a>

(3)动态调用画廊
$( ’#gallery’ ).click( function( e ) {
e.preventDefault();
$.swipebox( [
{ href:’big/image1.jpg’, title:’My Caption’ },
 href:’big/image2.jpg’, title:’My Second Caption’ }
    ] );
} );

(4)检测状态
if ( $.swipebox.isOpen ) {
}

(5)可用参数
<script type="text/javascript">
;( function( $ ) {
$( ’.swipebox’ ).swipebox( {
useCSS : true,
useSVG : true,
initialIndexOnArray : 0,
hideCloseButtonOnMobile : false,
hideBarsDelay : 3000,
videoMaxWidth : 1140,
beforeOpen: function(){},
afterOpen : null,
afterClose: function(){}
loopAtEnd : false        
} );
} )( jQuery );
</script>

KeyMob移动端广告平台广告展现形式丰富,高99%的填充率。KeyMob移动端广告平台还能帮助应用开发者把应用推广到庞大的目标群体中。给开发者带来持续、稳定和丰厚的收益回报。

Html5添加支持桌面、移动触摸手机和平板电脑的Lightbox插件教程

标签:

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
key
加入时间:2016-01-05
  关注此人  发短消息
文章分类
key”关注的人------(0
key”的粉丝们------(0
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!