$(document).ready(function () { //禁用文本复制 document.onselectstart = function () { return false; } //禁用鼠标右箭 document.oncontextmenu = function () { return false; } POST = function(name = '地址',json = '数据',result = '回调') { $.post('http://panhua.nat100.top/'+name,json,function(data){ result(data); }) } 滑动显示 = function (table1 = '标签一',time = '时间') { $(table1).css({ overflow:'hidden', cursor:'pointer', }).find('div').css({ width:$(table1).width(), height:$(table1).height(), background:'rgba(44,62,80,.4)', marginTop:$(table1).height()-$(table1).find('span').height(), cursor:'pointer', }).find('*').css({ width:$(table1).width(), color:'#FFF', margin:'5px', textAlign:'left', }); $(table1).hover(function(){ $(this).find('div').animate({ marginTop:'0px', },time) },function(){ $(this).find('div').animate({ marginTop:$(this).height()-$(this).find('span').height(), },time); }); } alert_s = function(value = '类容'){ $('body').append(`
${value}
`); setTimeout(function () { $('#alert').remove(); },500) } //----------------------------------------------------------------------------------------- $('#ifame').css({ backgroundImage:'url(https://www.gitinn.com/pan-chinese/_blogs/raw/master/img/'+parseInt(Math.random()*11+1)+'.png)', }) $('input[placeholder="请输入内容"]').attr('id','search').attr('autocomplete','off'); setTimeout(function () { $('#search').focus(function(){ $(this).attr('placeholder','') }).blur(function () { $(this).attr('placeholder','请输入内容') }); },300) $('.Body_val>h1').text('').text('欢迎来到Hopeの我的blog'); $('head').after(` `) //---------------------------------------------------------------------------------------------- })