也就是鼠标点击触发按钮后执行的动作
if ($('.read-section').css('left') == "0px")
$('.read-section').animate({left: '-212px'}, 200); //把左边栏的宽度设置为原来的宽度并显示出来, 根据设定的时间慢慢展现
else
$('.read-section').animate({left: '0px'}, 200); //把左边栏的宽度设置为原来的宽度并显示出来, 根据设定的时间慢慢展现
});
//--本地缓存代码开始--
let bookInfo = {
chapter_id: '9388',
end: "完结",
chapter_name: '第31话在我怀里可不能乱动',
cover_url:'https://files.pimanhua.com/static/upload/book/cover/1622757600/BB8DF105E8D03D9AEC46A58B76459D33.jpg',
book_id: '84',
last_time: "2021-06-04",
book_name:'王妃有毒',
param: '84'
};
localStorage.setItem('manhua_84', JSON.stringify(bookInfo));//id为键,设置缓存
let history = [];
let value = localStorage.getItem('xwx_historys'); //读取参照数组
if (value != undefined && value != null) {
history = JSON.parse(value);
}
if (history.indexOf('manhua_84') === -1) {
history.push('manhua_84'); //把id为值存入参照数组
}
console.log(history)
localStorage.setItem('xwx_historys', JSON.stringify(history));
//--本地缓存代码结束--
document.body.oncopy = function () {
return false;
}; //阻止复制
document.body.onselectstart = function () {
return false;
}; //阻止选中
document.oncontextmenu = function () {
return false;
}; //阻止菜单弹出
if (document.images) {
for (i = 0; i < document.images.length; i++) {
document.images[i].onmousedown = function () {
return false;
};
}
}
});