/*!
* 版本:MYUI Copyright © 2019
* 作者:QQ726662013版权所有
* 官网:https://www.mytheme.cn
*/
var MyTheme = {
'Browser': {
url: document.URL,
domain: document.domain,
title: document.title,
language: (navigator.browserLanguage || navigator.language).toLowerCase(),
canvas: function() {
return !!document.createElement("canvas").getContext
}(),
useragent: function() {
var a = navigator.userAgent;
return {
mobile: !! a.match(/AppleWebKit.*Mobile.*/),
ios: !! a.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/),
android: -1 < a.indexOf("Android") || -1 < a.indexOf("Linux"),
iPhone: -1 < a.indexOf("iPhone") || -1 < a.indexOf("Mac"),
iPad: -1 < a.indexOf("iPad"),
trident: -1 < a.indexOf("Trident"),
presto: -1 < a.indexOf("Presto"),
webKit: -1 < a.indexOf("AppleWebKit"),
gecko: -1 < a.indexOf("Gecko") && -1 == a.indexOf("KHTML"),
weixin: -1 < a.indexOf("MicroMessenger")
}
}()
},
'Cookie': {
'Set':function(name,value,days){
var expires;
if (days) {
expires = days;
} else{
expires = "";
}
$.cookie(name,value,{expires:expires,path:'/'});
},
'Get':function(name){
var styles = $.cookie(name);
return styles;
},
'Del':function(name,tips){
if(window.confirm(tips)){
$.cookie(name,null,{expires:-1,path: '/'});
location.reload();
}else{
return false;
}
}
},
'Ajax':function(url,type,dataType,data,sfun,efun,cfun){
type=type||'get';
dataType=dataType||'json';
data=data||'';
efun=efun||'';
cfun=cfun||'';
$.ajax({
url:url,
type:type,
dataType:dataType,
data:data,
timeout: 5000,
beforeSend:function(XHR){
},
error:function(XHR,textStatus,errorThrown){
if(efun) efun(XHR,textStatus,errorThrown);
},
success:function(data){
sfun(data);
},
complete:function(XHR, TS){
if(cfun) cfun(XHR, TS);
}
})
},
'Mobile': {
'Nav': {
'Init': function() {
if($(".nav-slide").length){
$(".nav-slide").each(function(){
var $that = $(this);
MyTheme.Mobile.Nav.Set($that,$that.attr('data-align'));
});
}
},
'Set': function(id,align) {
$index = id.find('.active').index()*1;
if($index > 3){
$index = $index-3;
}else{
$index = 0;
}
id.flickity({
cellAlign: align,
freeScroll: true,
contain: true,
prevNextButtons: false,
pageDots: false,
percentPosition: true,
initialIndex: $index
});
}
},
'Mshare': function() {
$(".open-share").click(function() {
MyTheme.Browser.useragent.weixin ? $("body").append('
') : $("body").append('');
$(".mobile-share").click(function() {
$(".mobile-share").remove();
$("body").removeClass("modal-open");
});
});
}
},
'Images': {
'Lazyload': function() {
$(".lazyload").lazyload({
effect: "fadeIn",
threshold: 200,
failure_limit : 1,
skip_invisible : false,
});
},
'Qrcode': {
'Init': function() {
if($("#qrcode").length){
var $that = $("#qrcode");
MyTheme.Images.Qrcode.Set($that.attr('data-link'),$that.attr('data-dark'),$that.attr('data-light'));
$that.attr("class","img-responsive");
}
},
'Set': function(url,dark,light) {
url=0||location.href;
var qrcode = new QRCode('qrcode', {
text: url,
width: 120,
height: 120,
colorDark : dark,
colorLight : light,
correctLevel : QRCode.CorrectLevel.H
});
}
},
'Flickity': {
'Init': function() {
if($(".flickity").length){
$(".flickity").each(function(){
var $that = $(this);
MyTheme.Images.Flickity.Set($that,$that.attr('data-align'),$that.attr('data-dots'),$that.attr('data-next'),$that.attr('data-play'));
//MyTheme.Images.Lazyload();
});
}
},
'Set': function(id,align,dots,next,play) {
dots=dots||false;
next=next||false;
play=play||false;
id.flickity({
cellAlign: align,
wrapAround: true,
contain: true,
pageDots: dots,
autoPlay: play,
percentPosition: true,
prevNextButtons: next
});
}
}
},
'Link': {
'Copy': {
'Init': function() {
$(".myui-copy-link").each(function(){
var links = $(this).attr("data-url");
MyTheme.Link.Copy.Set(this,links);
});
$(".myui-copy-html").each(function(){
var html = $(this).parent().find(".content").html();
MyTheme.Link.Copy.Set(this,html);
});
},
'Set': function(id,content) {
var clipboard = new Clipboard(id, {
text: function() {
return content;
}
});
clipboard.on('success', function(e) {
layer.msg('复制成功');
});
clipboard.on("error",function(e){
layer.msg('复制失败,请手动复制');
});
}
},
'Short': function(){
$(".myui-short").each(function(){
var codyId = this;
var shortId = $(this);
var shortUrl = shortId.val() || shortId.attr("data-url");
var linkText = shortId.attr("data-text");
if(myui.short==1){
$.ajax({
type : 'GET',
url : myui.shortapi+encodeURIComponent(shortUrl),
dataType : 'jsonp',
success : function(r) {
url_short = r.data.urls[0].url_short;
if(shortId.val()){
shortId.val(linkText+url_short);
}else if(shortId.attr("data-url")){
shortId.attr("data-url",url_short);
MyTheme.Link.Copy.Set(codyId,linkText+url_short);
}
}
});
}else{
if(shortId.val()){
shortId.val(linkText+shortUrl);
}else if(shortId.attr("data-url")){
shortId.attr("data-url",shortUrl);
MyTheme.Link.Copy.Set(codyId,linkText+shortUrl);
}
}
});
}
},
'Layer': {
'Img': function(title,src,text) {
layer.open({
type: 1,
title: title,
skin: 'layui-layer-rim',
content: ''+text+'
'
});
},
'Html': function(title,html) {
layer.open({
type: 1,
title: title,
skin: 'layui-layer-rim',
content: ''+html+'
'
});
},
'Div': function(id) {
layer.open({
type: 1,
title:false,
skin: 'layui-layer-rim',
content: $(id)
});
},
'Popbody': function(name,title,html,day,wide,high) {
var pop_is = MyTheme.Cookie.Get(name);
var html = $(html).html();
if(!pop_is){
layer.open({
type: 1,
title: title,
skin: 'layui-layer-rim',
content: html,
area: [wide+'px', high+'px'],
cancel: function(){
MyTheme.Cookie.Set(name,1,day);
}
});
}
}
},
'Other': {
'Headroom': function() {
if($("#header-top").length){
var header = document.querySelector("#header-top");
var headroom = new Headroom(header, {
tolerance: 5,
offset: 205,
classes: {
initial: "top-fixed",
pinned: "top-fixed-up",
unpinned: "top-fixed-down"
}
});
headroom.init();
}
},
'Popup': function(id) {
$(id).addClass("popup-visible");
$("body").append('').addClass("hidden");
$(".close-popup").click(function() {
$(id).removeClass("popup-visible");
$(".mask").remove();
$("body").removeClass("hidden");
});
$(".mask").click(function() {
$(id).removeClass("popup-visible");
$(this).remove();
$("body").removeClass("hidden");
});
},
'Bootstrap': function() {
$('a[data-toggle="tab"]').on("shown.bs.tab", function(a) {
var b = $(a.target).text();
$(a.relatedTarget).text();
$("span.active-tab").html(b);
});
},
'Skin': function() {
var skinnum = 0,act;
var lengths = $("link[name='skin']").length;
$('.btnskin').click(function() {
skinnum+=1;
if(skinnum==lengths){skinnum=0;}
var skin = $("link[name='skin']").eq(skinnum).attr("href");
layer.msg("正在切换皮肤,请稍后...",{anim:5,time: 2000},function(){
$("link[name='default']").attr({href:skin});
});
MyTheme.Cookie.Set('skinColor',skin,365);
});
var color = MyTheme.Cookie.Get('skinColor');
if(color){
$("link[name='default']").attr({href:color});
}
},
'Sort': function() {
$(".sort-button").each(function(){
$(this).on("click",function(e){
e.preventDefault();
$(this).parent().parent().parent().find(".sort-list").each(function(){
var playlist=$(this).find("li");
for(let i=0,j=playlist.length-1;i');
MyTheme.Mobile.Nav.Init();
}else{
display.slideDown("slow");
$(this).html('收起 ');
MyTheme.Mobile.Nav.Init();
}
});
},
'History': {
'Init':function(){
if($(".vod_history").length){
var $that = $(".vod_history");
MyTheme.Other.History.Set($that.attr('data-name'),$that.attr('data-link'),$that.attr('data-pic'),$that.attr('data-part'),$that.attr('data-limit'));
}
},
'Set':function(name,link,pic,part,limit){
if(!link){ link = document.URL;}
var history = MyTheme.Cookie.Get("history");
var len=0;
var canadd=true;
if(history){
history = eval("("+history+")");
len=history.length;
$(history).each(function(){
if(name==this.name){
canadd=false;
var json="[";
$(history).each(function(i){
var temp_name,temp_img,temp_url,temp_part;
if(this.name==name){
temp_name=name;temp_img=pic;temp_url=link;temp_part=part;
}else{
temp_name=this.name;temp_img=this.pic;temp_url=this.link;temp_part=this.part;
}
json+="{\"name\":\""+temp_name+"\",\"pic\":\""+temp_img+"\",\"link\":\""+temp_url+"\",\"part\":\""+temp_part+"\"}";
if(i!=len-1)
json+=",";
})
json+="]";
MyTheme.Cookie.Set('history',json,365);
return false;
}
});
}
if(canadd){
var json="[";
var start=0;
var isfirst="]";
isfirst=!len?"]":",";
json+="{\"name\":\""+name+"\",\"pic\":\""+pic+"\",\"link\":\""+link+"\",\"part\":\""+part+"\"}"+isfirst;
if(len>limit-1)
len-=1;
for(i=0;i0){
json+="{\"name\":\""+history[len-1].name+"\",\"pic\":\""+history[len-1].pic+"\",\"link\":\""+history[len-1].link+"\",\"part\":\""+history[len-1].part+"\"}]";
}
MyTheme.Cookie.Set('history',json,365);
}
}
},
'Player': function() {
if($("#player-left").length){
var PlayerLeft = $("#player-left");
var PlayerSide = $("#player-sidebar");
var LeftHeight = PlayerLeft.outerHeight();
var Position = $("#playlist li.active").position().top;
$("#player-sidebar-is").click(function() {
PlayerSide.toggle();
if(PlayerSide.css("display")==='none') {
PlayerLeft.css("width","100%");
$(this).html("");
}
if(PlayerSide.css("display")==='block') {
PlayerLeft.css("width","");
$(this).html("");
}
});
if(!MyTheme.Browser.useragent.mobile){
PlayerSide.css({"height":LeftHeight,"overflow":"auto"});
PlayerSide.scrollTop(Position);
}
}
if($(".player-fixed").length){
if(!MyTheme.Browser.useragent.mobile){
$(window).scroll(function(){
if($(window).scrollTop()>window.outerHeight){
$(".player-fixed").addClass("fixed fadeInDown");
$(".player-fixed-off").show();
}else if($(window).scrollTop()= 672 && type >= 2401) {
dapCtrl.Put("SXMP4ARG", '"' + url + '" /title "' + moviename + '" /startfrom "_web_xunbo" /openfrom "_web_xunbo"');
} else {
var r = confirm("\u8bf7\u5148\u4e0b\u8f7d\u5b89\u88c5\u8fc5\u96f7\u770b\u770b\uff0c\u70b9\u786e\u5b9a\u8fdb\u5165\u8fc5\u96f7\u770b\u770b\u5b98\u7f51\u4e0b\u8f7d");
if (r == true) {
window.open('http://www.kankan.com/app/xmp.html','','');
}
}
} catch(e) {
var r = confirm("\u8bf7\u5148\u4e0b\u8f7d\u5b89\u88c5\u8fc5\u96f7\u770b\u770b\uff0c\u70b9\u786e\u5b9a\u8fdb\u5165\u8fc5\u96f7\u770b\u770b\u5b98\u7f51\u4e0b\u8f7d");
if (r == true) {
window.open('http://www.kankan.com/app/xmp.html','','');
}
}
}
}
});
$(".Codyurl").each(function(){
var downurl = $(this).attr("data-text");
MyTheme.Link.Copy.Set(this,downurl);
});
},
'Share': function(){
if(".bdshare".length){
window._bd_share_config = {
common: {
bdText: '',
bdDesc: '',
bdUrl: '',
bdPic: ''
},
share: [{
"bdSize": 24,
bdCustomStyle: myui.tpl+'statics/css/mytheme-share.css'
}]
}
with(document)0[(getElementsByTagName("head")[0]||body).appendChild(createElement('script')).src=''+myui.bdapi+'?cdnversion='+~(-new Date()/36e5)];
}
}
}
};
$(function(){
if(MyTheme.Browser.useragent.mobile){
MyTheme.Mobile.Nav.Init();
MyTheme.Mobile.Mshare();
}
MyTheme.Images.Lazyload();
MyTheme.Images.Flickity.Init();
MyTheme.Link.Copy.Init();
MyTheme.Link.Short();
MyTheme.Other.Bootstrap();
MyTheme.Other.Sort();
MyTheme.Other.Search();
MyTheme.Other.Collapse();
MyTheme.Other.Slidedown();
MyTheme.Other.Scrolltop();
MyTheme.Other.History.Init();
MyTheme.Other.Player();
MyTheme.Other.Close();
MyTheme.Other.Xunlei();
});