Authored by 张孝茹

适配百度

... ... @@ -3,6 +3,11 @@ const lazyload = require('../plugins/lazyload');
let indexObj = {
init: function() {
if (this.queryString().openType === 'baidu') {
this.setCookie('openType', '1', {path: '/', expires: 1});
}
this.lazyLoad();
this.resizeInit();
this.resize();
... ... @@ -51,10 +56,53 @@ let indexObj = {
return cookieVal;
},
downShow: function() {
if (this.cookie('ignoreDownload') == 1) {
if (this.cookie('ignoreDownload') || this.cookie('openType')) {
$('.download').remove();
}
},
queryString: function() {
var vars = [],
hash,
i;
var hashes = window.location.search.slice(1).split('&');
for (i = 0; i < hashes.length; i++) {
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
},
setCookie: function(name, value, options) {
var expires = '',
path,
domain,
secure,
date;
if (typeof value !== 'undefined') {
options = options || {};
if (value === null) {
value = '';
options.expires = -1;
}
if (options.expires &&
(typeof options.expires === 'number' || options.expires.toUTCString)) {
if (typeof options.expires === 'number') {
date = new Date();
date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
} else {
date = options.expires;
}
expires = '; expires=' + date.toUTCString();
}
path = options.path ? '; path=' + options.path : '';
domain = options.domain ? '; domain=' + options.domain : '';
secure = options.secure ? '; secure' : '';
document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
}
},
};
$(
... ...