;(function ($, document, window) {
$.pictureviewer = function (options) {
var pictureviewer_html = '
' +
'
' +
'' +
'
' +
'
' +
'
' +
'
' +
'
' +
'
' +
'' +
'
' +
'
' +
'
';
//init param
var $images = options.images,
$initimageindex = options.initimageindex,
$scrollswitch = options.scrollswitch;
if (!$images || !$images.length) return;
if (!$initimageindex) $initimageindex = 1;
var $nowimageindex = $initimageindex;
//init dom
if (!$('#pictureviewer').length) $('body').append(pictureviewer_html);
//definition variable
var html1 = $('html');
var body = $('body');
var esc_key_code = 27;
var left_key_code = 37;
var right_key_code = 39;
var $pictureviewer = $('#pictureviewer');
var $pictureviewercontent = $pictureviewer.children('.content');
var $cover = $pictureviewer.find('.picture-content .cover');
var $closebtn = $pictureviewer.find('.close-view');
var $maximizationbtn = $pictureviewer.find('.maximization');
var $miniaturizationbtn = $pictureviewer.find('.miniaturization');
var $prevbtn = $pictureviewer.find('.handel-prev');
var $nextbtn = $pictureviewer.find('.handel-next');
var $num = $pictureviewer.find('.counter .num');
var $total = $pictureviewer.find('.counter .total');
var defaultviewwidth = $pictureviewercontent.css('width');
var defaultviewheight = $pictureviewercontent.css('height');
var $imagestotal = $images.length;
//view is show
var viewisshow = function viewisshow() {
return $pictureviewer.is(':visible');
};
//lock body
var lockbody = function lockbody() {
return html1.addclass("cur")
};
//unlock body
var unlockbody = function unlockbody() {
return html1.removeclass("cur")
};
//show view
var showview = function showview() {
$pictureviewer.show();
lockbody();
};
//hide view
var hideview = function hideview() {
$pictureviewer.hide();
$maximizationbtn.show();
$miniaturizationbtn.hide();
$pictureviewercontent.css({ 'width': defaultviewwidth, 'height': defaultviewheight });
unlockbody();
};
//change image
var changeimage = function changeimage(index) {
$cover.attr('src', $images[index]);
$nowimageindex = index;
$a=$(".zbl-imgbig .zbl-txtbox").eq($nowimageindex).html();
$b=$(".zbl-imgbig .zbl-txtbox2").eq($nowimageindex).html();
if($a==null){$a=""}
if($b==null){$b=""}
$c=$a+$b;
changeimagenum();
};
//change image num
var changeimagenum = function changeimagenum() {
$num.text($c);
};
//to prev image
var toprevimage = function toprevimage() {
return changeimage($nowimageindex === 0 ? $imagestotal - 1 : $nowimageindex - 1);
};
//to next image
var tonextimage = function tonextimage() {
return changeimage($nowimageindex === $imagestotal - 1 ? 0 : $nowimageindex + 1);
};
//init state
showview();
changeimage($initimageindex - 1);
$total.text($imagestotal);
//handle close click
$closebtn.on('click', hideview);
//handel maximization click
$maximizationbtn.on('click', function () {
$(this).hide();
$miniaturizationbtn.show();
$pictureviewercontent.css({ 'width': '100%', 'height': '100%' });
});
//handel miniaturization click
$miniaturizationbtn.on('click', function () {
$(this).hide();
$maximizationbtn.show();
$pictureviewercontent.css({ 'width': defaultviewwidth, 'height': defaultviewheight });
});
//handle document keydown
$(document).on('keydown', function (event) {
if (!viewisshow()) return;
var keycode = event.keycode;
if (keycode === esc_key_code) hideview();
if (keycode === left_key_code) toprevimage();
if (keycode === right_key_code) tonextimage();
});
//handel prev click
$prevbtn.on('click', toprevimage);
//handel next click
$nextbtn.on('click', tonextimage);
if ($scrollswitch) {
try {
$pictureviewercontent.mousewheel(function (event, delta) {
if (delta === 1) toprevimage();
if (delta === -1) tonextimage();
});
} catch (e) {
throw 'mousewheel plugin no import!';
}
}
};
})(jquery, document, window);