Слияние кода завершено, страница обновится автоматически
//
// Copyright 2010 Yu Jianrong, All Rights Reserved
//
// Licensed under BSD License.
//
// modified by Zhou Xiumin
($___ = function () {
var _window = window;
var _document = document;
var $_ = function (id) {
return _document.getElementById(id);
};
var m = _document.createElement("meta");
m.name = "viewport";
var i;
var c_page = 0;
var div_imgs = [];
var VerticalWritting = true;
var Landscape = false;
var MAXPRELOADPAGENUM = 10;
var getPageURL = function () {
return _window.location.href;
};
var div_postprocess = function () {
};
var configuration = localStorage.getItem("config") ? JSON.parse(localStorage.getItem("config")) : {};
if (configuration.SmoothAnimation === undefined)
configuration.SmoothAnimation = true;
if (configuration.PreloadPages === undefined)
configuration.PreloadPages = 4;
var getCurrentPage = function () {
},
getPageCount = function () {
},
getImgURL = function () {
},
setCurrentPage = function () {
},
getPrevChapter = function () {
},
getNextChapter = function () {
};
var parseEngine = {
"/reader": function () {
var pageSearch = location.search;
var current_page = 0;
var pageCount = _window.pageCount;
var images = _window.images;
getCurrentPage = function () {
return current_page;
};
getPageCount = function () {
return pageCount;
};
getImgURL = function (thePage) {
return images[thePage];
};
setCurrentPage = function (thePage) {
current_page = thePage;
};
getPageURL = function () {
return "/reader" + pageSearch;
};
getPrevChapter = function () {
return false;
};
getNextChapter = function () {
return false;
};
},
"template_url": function () {
var current_page = 0;
getCurrentPage = function () {
return false;
};
getPageCount = function () {
return false;
};
getImgURL = function () {
return false;
};
setCurrentPage = function (thePage) {
current_page = thePage;
};
getPageURL = function () {
return "/reader" + pageSearch;
};
getPrevChapter = function () {
return false;
};
getNextChapter = function () {
return false;
};
},
"goxiee.com": function () {
console.log("begin parser goxiee:");
var current_page = 0;
var sDomain = _window.sDomain;
var images = _window.arrFiles;
console.log(typeof images);
var pageCount = images.length;
console.log("reader debug:" + sDomain);
console.log("reader debug:" + images);
var sComicID = $("#hdInfoID").val();
var sVolID = $("#hdID").val();
var url_p = "/app/getNextVolUrl.aspx?ComicID=" + sComicID + "&VolID=" + sVolID + "&t=" + 'P';
var url_n = "/app/getNextVolUrl.aspx?ComicID=" + sComicID + "&VolID=" + sVolID + "&t=" + 'N';
getCurrentPage = function () {
return current_page;
};
getPageCount = function () {
return pageCount;
};
getImgURL = function (thePage) {
return sDomain + images[thePage];
};
setCurrentPage = function (thePage) {
current_page = thePage;
};
getPageURL = function () {
return "/reader" + pageSearch;
};
getPrevChapter = function () {
var op = $.ajax({url: url_p, async: false});
var sp = op.responseText;
if (sp.substring(0, 4) == "Err_") {
// alert(sp.substring(4));
sp = ''
}
if (sp == '') {
return false
} else
return {text: "上一章", href: sp};
};
getNextChapter = function () {
var on = $.ajax({url: url_n, async: false});
var sn = on.responseText;
if (sn.substring(0, 4) == "Err_") {
// alert(sn.substring(4));
sn = ''
}
if (sn == '') {
return false
} else
return {text: "下一章", href: sn};
};
},
"m.2manhua.com": function () {
console.log("begin parser 2manhua.com:");
var page_num_and_total = document.getElementById('pageNo').textContent;
console.log("page_num_html:" + page_num_and_total);
current_page = parseInt(page_num_and_total.split('/')[0]) - 1;
var pageCount = parseInt(page_num_and_total.split('/')[1]);
images = cInfo.fs;
try {
var UrlBase = location.href.replace((/\?p=\d*/), "");
}
catch (e) {
UrlBase = location.href + "&";
}
getCurrentPage = function () {
return current_page;
};
getPageCount = function () {
return pageCount;
};
getImgURL = function (thePage) {
return "http://tupian.333dm.com" + images[thePage];
};
setCurrentPage = function (thePage) {
current_page = thePage;
};
getPageURL = function (thePage) {
return UrlBase + "?p=" + (thePage + 1);
};
getPrevChapter = function () {
console.log("pcid" + cInfo.pcid);
return cInfo.pcid != -1 ? {text: "上一章", href: "http://m.2manhua.com/" + cInfo.pcid + '.html'} : false;
};
getNextChapter = function () {
console.log("pcid" + cInfo.ncid);
return cInfo.ncid != -1 ? {text: "下一章", href: "http://m.2manhua.com/" + cInfo.ncid + '.html'} : false;
};
}
};
var formatStr = function (str) {
var arg = arguments;
var index = 0;
return str.replace((/%s/g), function (s) {
++index;
return arg[index] === undefined ? s : arg[index];
});
};
var loc_RELOAD = "重新载入",
loc_VERTICALWRITTING = "从右向左阅读",
loc_CURRENTPAGE = "当前页:",
loc_JUMPTOPAGE = "跳转到:",
loc_FIRSTPAGE = "已经是第一页了",
loc_LASTPAGE = "已经是最后一页了",
loc_NOPARSER = "不能处理该页面,阅读器仅能处理以下页面:\n%s",
loc_NEXTCHAPTER = "下一章:<br/>%s",
loc_PREVCHAPTER = "上一章:<br/>%s",
loc_NONEXTCHAPTER = "没有下一章节",
loc_NOPREVCHAPTER = "没有上一章节",
loc_LANDSCAPEWARNING = "本页面仅能在横向模式阅读,请旋转您的设备!",
loc_PORTRAITWARNING = "本页面仅能在纵向模式阅读,请旋转您的设备!",
loc_ANIMATIONENABLE = "平滑翻页",
loc_ANIMATIONWARNING = "注意:平滑翻页可能会造成您的Safari浏览器崩溃!\n您确定要打开平滑翻页功能吗?",
loc_LOADING = "载入中……长时间无反应请刷新页面重试",
loc_PRELOADPAGENUM = "向后预载入页数:";
var parserFound = false;
var parser;
for (parser in parseEngine) {
if (new RegExp(parser.replace(/\.|\/|\*/g, function (e) {
return ({".": "\.", "/": "\/", "*": ".*"})[e];
})).test(_window.location.href)) {
parserFound = true;
parseEngine[parser]();
break;
}
}
if (!parserFound) {
var parsers = [];
for (parser in parseEngine) {
parsers.push.apply(parsers, parser.split("|"));
}
alert(formatStr(loc_NOPARSER, parsers.join("\n")));
return;
}
var setConfig = function (itemName, itemValue) {
configuration[itemName] = itemValue;
localStorage.setItem("config", JSON.stringify(configuration));
};
// clear the images for more memory
var emptyImageSrc = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQIHWNgAAIAAAUAAY27m/MAAAAASUVORK5CYII=";
var imgs = _document.getElementsByTagName("img");
for (i = 0; i < imgs.length; ++i)
imgs[i].src = emptyImageSrc;
var oldTitle = '';
if (!_window.oldTitle)
oldTitle = _document.title;
if (localStorage["ReaderDebug"] === "GenerateList") {
var allImgs = "";
for (i = 0; i < getPageCount(); ++i) {
var img = getImgURL(i), url;
if ((/http:|https:/).test(img))
url = img;
else if ((/^\//).test(img))
url = location.origin + img;
else
url = location.href.match(/.*\//)[0] + img;
allImgs += encodeURI(url) + "<br/>";
}
document.body.innerHTML = allImgs;
return;
}
var AllLinks = _document.querySelectorAll("head>link");
for (i = 0; i < AllLinks.length; ++i)
_document.head.removeChild(AllLinks[i]);
_document.body.style.cssText = "margin:0;padding:0;text-align:center;";
setTimeout(function () {
if (!(/iPad/.test(navigator.userAgent)) && localStorage["ReaderDebug"] !== "debug") {
m.content = "width=device-width,initial-scale=1.0,maximum-scale=1.5,minimum-scale=0.25";
_document.getElementsByTagName("head")[0].appendChild(m);
_document.body.innerHTML = "";
for (i = 0; i < getPageCount(); ++i) {
var div_img = _document.createElement("div");
div_img.style.cssText = "visibility:hidden;position:absolute;left:0px;top:0px;";
div_img.page = i;
div_img.tImg = new Image();
div_img.tImg.style.cssText = "position:absolute;left:0px;top:0px;";
div_img.appendChild(div_img.tImg);
div_img.unloaded = true;
div_img.eraseImg = function () {
if (!this.unloaded) {
this.unloaded = true;
this.tImg.src = emptyImageSrc;
}
};
div_img.loadImg = function (focus) {
var _this = this;
var scrollToPos = function () {
if (VerticalWritting) {
setTimeout(function () {
_window.scrollTo(_this.tImg.width - innerWidth, 0);
}, 0);
} else {
setTimeout(function () {
_window.scrollTo(0, 0);
}, 0);
}
};
if (!this.unloaded) {
if (focus)
scrollToPos();
return;
}
this.unloaded = false;
this.tImg.onload = function () {
if (focus)
scrollToPos();
this.onload = null;
};
setTimeout(function () {
if (!_this.tImg.flink)
_this.tImg.flink = getImgURL(_this.page);
_this.tImg.src = _this.tImg.flink;
}, 0);
};
div_img.focusMe = function () {
setCurrentPage(this.page);
div_imgs[this.page].style.visibility = "visible";
div_imgs[this.page].loadImg(true);
for (i = this.page + 1; i < div_imgs.length; ++i) {
div_imgs[i].style.visibility = "hidden";
if (i > this.page + configuration.PreloadPages)
div_imgs[i].eraseImg();
else
div_imgs[i].loadImg(false);
}
for (i = this.page - 1; i >= 0; --i) {
div_imgs[i].style.visibility = "hidden";
if (i < this.page - 2)
div_imgs[i].eraseImg();
else
div_imgs[i].loadImg(false);
}
};
_document.body.appendChild(div_img);
div_imgs.push(div_img);
}
var nextImg = function () {
++c_page;
if (c_page >= div_imgs.length) {
c_page = div_imgs.length - 1;
alert("Last page already");
} else
// history.forward();
div_imgs[c_page].focusMe();
};
var preImg = function () {
--c_page;
if (c_page < 0) {
c_page = 0;
alert("First page already");
} else {
// history.back();
div_imgs[c_page].focusMe();
}
};
_document.onmouseup = function (e) {
// for Firefox
if (e.target === _document.documentElement)
return;
if (!e.offsetX) {
e.offsetX = e.layerX;
e.offsetY = e.layerY;
}
if (e.offsetX - scrollX < innerWidth / 3) {
if (VerticalWritting)
nextImg();
else
preImg();
} else if (e.offsetX - scrollX > innerWidth * 2 / 3) {
if (VerticalWritting)
preImg();
else
nextImg();
} else {
var p = parseInt(prompt("jump to 1-" + div_imgs.length + " page", c_page + 1), 10);
if (p) {
if (p > div_imgs.length)
alert("maximum " + div_imgs.length + " pages!");
else {
c_page = p - 1;
div_imgs[p - 1].focusMe();
}
}
}
};
} else {
m.content = "user-scalable=no,width=device-width,initial-scale=1.0,maximum-scale=1.0";
_document.getElementsByTagName("head")[0].appendChild(m);
_document.body.innerHTML = "<div id=\"ReaderMain\" class=\"iReader\" style=\"opacity:0;left:0px;top:0px;-webkit-transition-duration:500ms;width:100%;height:100%;overflow:hidden;position:absolute;\">";
setTimeout(function () {
$_("ReaderMain").style.opacity = 1;
}, 0);
var div_Images = _document.createElement("div");
div_Images.style.cssText = "display:table;text-align:center;background-color:#D6D6D6;font-size:25px;position:absolute;left:0px;top:0px;width:100%;height:100%;overflow-x:hidden;overflow-y:hidden;z-index:0;";
div_Images.innerHTML = "<div style='display:table-cell;vertical-align:middle; text-align:center'>" + loc_LOADING + "</div>";
$_("ReaderMain").appendChild(div_Images);
for (i = 0; i < getPageCount(); ++i) {
var div_img = _document.createElement("div");
div_img.style.cssText = "background-color:white;visibility:hidden;position:absolute;left:0px;top:0px;width:100%;height:100%;overflow-x:hidden;overflow-y:hidden;";
div_img.page = i;
div_img.tImg = new Image();
div_img.appendChild(div_img.tImg);
div_img.loadingText = document.createElement("span");
div_img.appendChild(div_img.loadingText);
div_img.unloaded = true;
div_img.eraseImg = function () {
if (!this.unloaded) {
this.unloaded = true;
this.tImg.src = emptyImageSrc;
}
};
div_img.loadImg = function () {
var _this = this;
if (!this.unloaded) {
if (!this.tImg.onload) {
this.tImg.setTransform();
}
return;
}
this.unloaded = false;
this.tImg.onload = function () {
if (localStorage["ReaderDebug"] === "debug")
console.info("img:w[" + this.width + "] h[" + this.height + "]:" + this.src);
if (this.width === 1 && this.height === 1) {
setTimeout(function () {
_this.tImg.onload();
}, 50);
return;
}
this.setTransform();
this.onload = null;
// clear the page
for (var NodeIdx = _document.body.childNodes.length - 1; NodeIdx >= 0; --NodeIdx) {
if (_document.body.childNodes[NodeIdx].className !== "iReader")
_document.body.removeChild(_document.body.childNodes[NodeIdx]);
}
_this.style.opacity = 1;
};
this.tImg.setTransform = function () {
if (this.unloaded)
return;
this.pageHeight = _window.innerHeight;
this.pageWidth = Math.floor(this.width * this.pageHeight / this.height);
if (this.height < 10) {
this.top = 0;
this.left = 0;
} else {
if (_this.setToRight ^ !VerticalWritting)
this.left = this.pageWidth <= _window.innerWidth ? (_window.innerWidth - this.pageWidth) >> 1 : 0;
else
this.left = this.pageWidth <= _window.innerWidth ? (_window.innerWidth - this.pageWidth) >> 1 : _window.innerWidth - this.pageWidth;
this.top = 0;
}
this.style.webkitTransform = "translate(" + Math.ceil(this.left) + "px, " + Math.ceil(this.top) + "px)";
};
setTimeout(function () {
if (!_this.tImg.flink)
_this.tImg.flink = getImgURL(_this.page);
_this.tImg.src = _this.tImg.flink;
}, 0);
this.tImg.style.position = "absolute";
this.tImg.style.width = "auto";
this.tImg.style.height = "100%";
this.tImg.style.left = "0px";
this.tImg.style.top = "0px";
this.tImg.left = this.tImg.top = 0;
this.tImg.setTransform();
this.style.opacity = 0.01;
};
div_img.focusMe = function (setToRight) {
var i;
setCurrentPage(this.page);
$_("currentPage").innerHTML = (this.page + 1) + "/" + getPageCount();
$_("PageJump").value = this.page;
try {
history.pushState({}, (this.page + 1) + "/" + getPageCount() + " " + oldTitle, getPageURL(this.page));
}
catch (e) {
}
_document.title = (this.page + 1) + "/" + getPageCount() + " " + oldTitle;
div_imgs[this.page].style.visibility = "visible";
div_imgs[this.page].setToRight = setToRight;
div_imgs[this.page].loadImg(true);
for (i = this.page + 1; i < div_imgs.length; ++i) {
div_imgs[i].style.visibility = "hidden";
div_imgs[i].setToRight = false;
if (i > this.page + configuration.PreloadPages)
div_imgs[i].eraseImg();
else
div_imgs[i].loadImg(false);
}
for (i = this.page - 1; i >= 0; --i) {
div_imgs[i].style.visibility = "hidden";
div_imgs[i].setToRight = true;
if (i < this.page - 2)
div_imgs[i].eraseImg();
else
div_imgs[i].loadImg(false);
}
div_imgs[this.page].style.webkitTransform = "translate(0px,0px)";
if (configuration.SmoothAnimation)
div_imgs[this.page].style.webkitTransitionProperty = "-webkit-transform";
if (this.page > 0)
div_imgs[this.page - 1].style.webkitTransform = "translate(" + (VerticalWritting ? 100 : -100) + "%,0px)";
if (this.page < div_imgs.length - 1)
div_imgs[this.page + 1].style.webkitTransform = "translate(" + (VerticalWritting ? -100 : 100) + "%,0px)";
};
div_img.tImg.addEventListener("webkitTransitionEnd",
function () {
this.style.webkitTransitionProperty = "none";
}, false);
div_img.tImg.style.webkitTransitionDuration = "300ms";
div_img.tImg.style.webkitTransitionProperty = "none";
div_img.tImg.style.webkitTransform = "translate(0px,0px)";
div_img.style.webkitTransitionDuration = "300ms";
div_img.style.webkitTransitionProperty = "none";
div_img.style.webkitTransform = "translate(0px,0px)";
div_img.addEventListener("webkitTransitionEnd",
function () {
this.style.webkitTransitionProperty = "none";
}, false);
div_postprocess(div_img);
div_Images.appendChild(div_img);
div_imgs.push(div_img);
}
var div_options = _document.createElement("div");
div_options.style.cssText = "-webkit-transition-duration:300ms;font-size:25px;display:none;position:absolute;left:0px;top:0px;width:100%;height:100%;overflow-x:hidden;overflow-y:hidden;z-index:10;background-color:rgba(0,0,0,0.6);";
div_options.enable = false;
$_("ReaderMain").appendChild(div_options);
div_options.innerHTML = "<div id='_left_chapter_' style='display:table;font-size:25px;position:absolute;left:0;top:0;width:25%;height:100%;background-color:rgba(255,0,0,0.5);color:white;'>" +
"<span id='_left_chapter_text_' style='vertical-align: middle; display: table-cell;' ></span></div>";
div_options.innerHTML += "<div style=' display: table-cell; width: 50%; height: 100%; position: absolute; left: 25%;'>" +
formatStr("<input type='button' id='Reload' style='font-size:25px;position:absolute;top:25%;left:30%;' value='%s' />" +
"<label style='position:absolute;top:30%;left:20%;background-color:black;color:white;'>" +
"<input type='checkbox' id='VerticalWritting'/>%s</label>" +
"<div style='font-size:25px;position:absolute;top:35%;left:20%;background-color:black;color:white'>" +
"%s<span id='currentPage'></span></div>" +
"<div style='font-size:25px;position:absolute;top:40%;left:20%;background-color:black;color:white;'>" +
"%s<select id='PageJump'></select></div>" +
"<label style='position:absolute;top:45%;left:20%;background-color:black;color:white;'>" +
"<input type='checkbox' id='AnimationEnable'/>%s</label>" +
"<div style='font-size:25px;position:absolute;top:50%;left:20%;background-color:black;color:white;'>" +
"%s<select id='PreloadPages'></select></div>",
loc_RELOAD,
loc_VERTICALWRITTING,
loc_CURRENTPAGE,
loc_JUMPTOPAGE,
loc_ANIMATIONENABLE,
loc_PRELOADPAGENUM
) + "</div>";
div_options.innerHTML += "<div id='_right_chapter_' style='display:table;font-size:25px;position:absolute;left:75%;top:0;width:25%;height:100%;background-color:rgba(255,0,0,0.5);color:white;'>" +
"<span id='_right_chapter_text_' style='vertical-align: middle; display: table-cell;' ></span></div>";
div_options.innerHTML += "<div style='font-size:25px;position:absolute;top:90%;left:30%;background-color:black;color:white;'>Version 0.11.10.31.18</div>";
div_options.addEventListener("webkitTransitionEnd", function () {
this.style.display = this.enable ? "inline" : "none";
}, false);
var updateLeftRightPanel = function () {
var nextChapter, nextChapterText, prevChapter, prevChapterText;
if (VerticalWritting) {
nextChapter = $_("_left_chapter_");
nextChapterText = $_("_left_chapter_text_");
prevChapter = $_("_right_chapter_");
prevChapterText = $_("_right_chapter_text_");
} else {
nextChapter = $_("_right_chapter_");
nextChapterText = $_("_right_chapter_text_");
prevChapter = $_("_left_chapter_");
prevChapterText = $_("_left_chapter_text_");
}
var next = getNextChapter();
if (next) {
nextChapterText.innerHTML = formatStr(loc_NEXTCHAPTER, next.text);
nextChapter.onclick = function () {
location.href = next.href;
};
nextChapter.style.visibility = "visible";
} else {
nextChapterText.innerHTML = "";//loc_NONEXTCHAPTER;
nextChapter.onclick = null;
nextChapter.style.visibility = "hidden";
}
var prev = getPrevChapter();
if (prev) {
prevChapterText.innerHTML = formatStr(loc_PREVCHAPTER, prev.text);
prevChapter.onclick = function () {
location.href = prev.href;
};
prevChapter.style.visibility = "visible";
} else {
prevChapterText.innerHTML = "";//loc_NOPREVCHAPTER;
prevChapter.onclick = null;
prevChapter.style.visibility = "hidden";
}
};
$_("VerticalWritting").checked = VerticalWritting;
$_("VerticalWritting").onclick = function () {
VerticalWritting = !VerticalWritting;
updateLeftRightPanel();
};
$_("Reload").onclick = function () {
$___();
};
for (i = 0; i < getPageCount(); ++i) {
var newoption = _document.createElement("option");
newoption.innerHTML = i + 1;
newoption.value = i;
$_("PageJump").appendChild(newoption);
}
$_("PageJump").onchange = function () {
c_page = parseInt($_("PageJump").value, 10);
div_imgs[c_page].focusMe();
showOptionPanel(false);
};
$_("AnimationEnable").checked = configuration.SmoothAnimation;
$_("AnimationEnable").onclick = function () {
setConfig("SmoothAnimation", this.checked);
};
for (var i = 2; i <= MAXPRELOADPAGENUM; ++i) {
var newoption = _document.createElement("option");
newoption.innerHTML = i;
newoption.value = i;
$_("PreloadPages").appendChild(newoption);
}
$_("PreloadPages").value = configuration.PreloadPages;
$_("PreloadPages").onchange = function () {
var preloadpage = parseInt($_("PreloadPages").value, 10);
setConfig("PreloadPages", preloadpage);
div_imgs[c_page].focusMe();
};
var showOptionPanel = function (show) {
div_options.style.opacity = show ? 0 : 1;
div_options.style.display = "inline";
div_options.enable = show;
setTimeout(function () {
div_options.style.opacity = div_options.enable ? 1 : 0;
}, 0);
if (show) {
updateLeftRightPanel();
} else {
}
};
var div_rotationWarning = _document.createElement("div");
div_rotationWarning.style.cssText = "font-size:25px;visibility:hidden;position:absolute;display:table;left:0px;top:0px;width:100%;height:100%;overflow-x:hidden;overflow-y:hidden;z-index:20;background-color:rgba(0,0,0,0.6);";
div_rotationWarning.innerHTML = formatStr("<div style='font-size:25px;position:relative;display:table-cell;vertical-align:middle; text-align:center'><div style='display:inline-block;background-color:black;color:white;'>%s</div></div>",
Landscape ? loc_LANDSCAPEWARNING : loc_PORTRAITWARNING);
div_rotationWarning.className = "iReader";
_document.body.appendChild(div_rotationWarning);
var checkRotation = function () {
// if (!(/iPad/.test(navigator.userAgent)))
// return;
var rightOrientation = true;
if (_window.hasOwnProperty("orientation")) {
switch (_window.orientation) {
case 0:
case 180:
rightOrientation = !Landscape;
break;
case 90:
case -90:
rightOrientation = Landscape;
break;
}
}
if (!rightOrientation) {
if (div_rotationWarning.style.visibility !== "visible")
div_rotationWarning.style.visibility = "visible";
div_rotationWarning.enable = true;
} else {
if (div_rotationWarning.style.visibility !== "hidden")
div_rotationWarning.style.visibility = "hidden";
div_rotationWarning.enable = false;
}
window.scrollTo(0, 0);
};
_window.onorientationchange = checkRotation;
checkRotation();
setInterval(checkRotation, 2500);
_window.onresize = function () {
for (var i = 0; i < div_imgs.length; ++i) {
if (div_imgs[i].tImg.setTransform)
div_imgs[i].tImg.setTransform();
}
};
var slideTowardRight = function () {
if (div_imgs[c_page].tImg.pageWidth <= _window.innerWidth)
return false;
if (div_imgs[c_page].setToRight ^ VerticalWritting) {
div_imgs[c_page].setToRight = VerticalWritting;
div_imgs[c_page].tImg.setTransform();
if (configuration.SmoothAnimation)
div_imgs[c_page].tImg.style.webkitTransitionProperty = "-webkit-transform";
return true;
}
return false;
};
var slideTowardLeft = function () {
if (div_imgs[c_page].tImg.pageWidth <= _window.innerWidth)
return false;
if (div_imgs[c_page].setToRight ^ !VerticalWritting) {
div_imgs[c_page].setToRight = !VerticalWritting;
div_imgs[c_page].tImg.setTransform();
if (configuration.SmoothAnimation)
div_imgs[c_page].tImg.style.webkitTransitionProperty = "-webkit-transform";
return true;
}
return false;
};
var preImg = function () {
if (VerticalWritting) {
if (slideTowardLeft())
return;
} else {
if (slideTowardRight())
return;
}
--c_page;
if (c_page < 0) {
c_page = 0;
showOptionPanel(true);
} else {
div_imgs[c_page].focusMe(true);
if (configuration.SmoothAnimation) {
div_imgs[c_page + 1].style.webkitTransitionProperty = "-webkit-transform";
div_imgs[c_page + 1].style.visibility = "visible";
}
// history.back();
}
};
var nextImg = function () {
if (VerticalWritting) {
if (slideTowardRight())
return;
} else {
if (slideTowardLeft())
return;
}
++c_page;
if (c_page >= div_imgs.length) {
c_page = div_imgs.length - 1;
showOptionPanel(true);
} else {
div_imgs[c_page].focusMe();
if (configuration.SmoothAnimation) {
div_imgs[c_page - 1].style.webkitTransitionProperty = "-webkit-transform";
div_imgs[c_page - 1].style.visibility = "visible";
}
}
};
var ImageclickAt = function (x, target) {
if (div_rotationWarning.enable)
return;
if (x < _window.innerWidth / 4) {
if (VerticalWritting)
nextImg();
else
preImg();
}
else if (x > _window.innerWidth * 3 / 4) {
if (VerticalWritting)
preImg();
else
nextImg();
}
else {
showOptionPanel(true);
}
return false;
};
var OptionclickAt = function (x, target) {
if (div_rotationWarning.enable)
return;
if (target.tagName === "DIV") {
showOptionPanel(false);
return false;
}
};
if (navigator.userAgent.indexOf("iPad") != -1 || navigator.userAgent.indexOf("Android") != -1) {
div_Images.ontouchstart = function (e) {
return ImageclickAt(e.touches[0].pageX, e.target);
};
div_options.ontouchstart = function (e) {
return OptionclickAt(e.touches[0].pageX, e.target);
};
}
else {
div_Images.onmousedown = function (e) {
ImageclickAt(e.pageX, e.target);
};
div_options.onmousedown = function (e) {
OptionclickAt(e.pageX, e.target);
};
}
}
c_page = getCurrentPage();
div_imgs[c_page].focusMe();
}, 0);
})();
Вы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Опубликовать ( 0 )