jQuery弹窗大图展示代码
jQuery弹窗大图展示代码
新建html文档。
准备好需要用到的图标。
书写hmtl代码。
示例演示 | Galpop Image Gallery Popup
1、单张图片
Just bind galpop to the anchor link.
2、多张图片
Bind a series of images with the same "data-galpop-group" attribute value.
书写css代码。
body, html { font-size: 100%; padding: 0; margin: 0; }
body { background: #494A5F; color: #D5D6E2; font-weight: 500; font-size: 1.05em; font-family: "Microsoft YaHei", "Segoe UI", "Lucida Grande", Helvetica, Arial, sans-serif; }
书写并添加js代码。
$(document).ready(function() {
$('.galpop-single').galpop();
$('.galpop-multiple').galpop();
$('.galpop-info').galpop();
var callback = function() {
var wrapper = $('#galpop-wrapper');
var info = $('#galpop-info');
var count = wrapper.data('count');
var index = wrapper.data('index');
var current = index + 1;
var string = 'Image '+ current +' of '+ count;
info.append('
'+ string +'
').fadeIn();};
$('.galpop-callback').galpop({
callback: callback
});
$('.manual-open').change(function(e) {
var image = $(this).val();
if (image) {
var settings = {};
$.fn.galpop('openBox',settings,image);
}
});
$('.manual-open-group').change(function(e) {
var v = $(this).val();
var images = [
'images/gallery/large/apocalypse.jpg',
'images/gallery/large/vintage.jpg',
'images/gallery/large/magicLake.jpg',
'images/gallery/large/underwater.jpg',
'images/gallery/large/goodBoy.jpg',
'images/gallery/large/darkroad.jpg',
'images/gallery/large/roadkill.jpg',
'images/gallery/large/wolfMarine.jpg',
'images/gallery/large/alice.jpg',
'images/gallery/large/reflection.jpg',
];
var settings = {};
$.fn.galpop('openBox',settings,images,v);
});
$('.click-open-iframe').galpop({
contentType: 'iframe',
});
$('.click-open-ajax').galpop({
contentType: 'AJAX',
});
});
代码整体结构。
查看效果。
版权声明:本站【趣百科】文章素材来源于网络或者用户投稿,未经许可不得用于商用,如转载保留本文链接:https://www.qubaik.com/article/70023.html