乐分享 加入收藏  -  设为首页
您的位置:生活百科网 > 知识百科 > 正文

目录

1,网页JS弹出广告代码,头部,右下角,网页中漂浮,对联广告代码等大全

网页JS弹出广告代码,头部,右下角,网页中漂浮,对联广告代码等大全

1.最简单的方法: public static String reverse1(String str) { return new StringBuffer(str).reverse().toString(); } 2.最常用的方法: public static String reverse3(String s) { char[] array = s.toCharArray(); String reverse = ""; //注意这是空,不是null for (int i = array.length - 1; i >= 0; i--) reverse += array[i]; return reverse; } 3.常用方法的变形: public static String reverse2(String s) { int length = s.length(); String reverse = ""; //注意这是空,不是null for (int i = 0; i < length; i++) reverse = s.charAt(i) + reverse;//在字符前面连接, 而非常见的后面 return reverse; }

2,求右下角弹出广告的JS代码,就是打开网页,右下角划上来的小窗口

绵阳整形美容医院抖动窗口关键函数
2012-09-04 12:49:56
var suspendcode=''+""+''+'' +''
document.write(suspendcode);

$(document).ready(function(){
$('#lovexin1').css('display','block');
FollowDiv = {
follow : function(){
$('#lovexin1').css('position','absolute');
$(window).scroll(function(){
var f_top = $(window).scrollTop() + $(window).height() - $("#lovexin1").outerHeight();
$('#lovexin1').css( 'top' , f_top );
});
}
}

if($.browser.msie && $.browser.version == 6) {
FollowDiv.follow();
}
shake();
repeat = setInterval(shake,10000);//这里repeat是全局,在hideLovexin1函数中清空
//绑定点击事件

});
function hideLovexin1()
{
$('#lovexin1').css('display','none');
window.setTimeout("show_doudong()",40000);


//clearInterval(repeat);
}

function shake(){
//window.console.log('shake')
var a=['bottom','right'],b=0;
var u=setInterval(function(){
$('#lovexin1').css( a[b%2] , (b++)%4<2?0:4 );
if(b>17){
clearInterval(u);
b=0;
}
},30)
}
function show_doudong()
{
$('#lovexin1').css('display','block');
}

3,求段网页右下角漂浮的JS代码,放广告用的!




不会被屏蔽的网页右下角漂浮窗口代码


#msg_win{border:1px solid #A67901;background:#EAEAEA;width:300px;position:absolute;right:0;font-size:12px;font-family:Arial;margin:0px;display:none;overflow:hidden;z-index:99;}
#msg_win .icos{position:absolute;top:2px;*top:0px;right:2px;z-index:9;}
.icos a{float:left;color:#833B02;margin:1px;text-align:center;font-weight:bold;width:14px;height:22px;line-height:22px;padding:1px;text-decoration:none;font-family:webdings;}
.icos a:hover{color:#fff;}
#msg_title{background:#FECD00;border-bottom:1px solid #A67901;border-top:1px solid #FFF;border-left:1px solid #FFF;color:#000;height:25px;line-height:25px;text-indent:5px;}
#msg_content{margin:0px;width:300px;height:300px;overflow:hidden;}






标题





var Message={
set: function() {//最小化与恢复状态切换
var set=this.minbtn.status == 1?[0,1,'block',this.char[0],'最小化']:[1,0,'none',this.char[1],'恢复'];
this.minbtn.status=set[0];
this.win.style.borderBottomWidth=set[1];
this.content.style.display =set[2];
this.minbtn.innerHTML =set[3]
this.minbtn.title = set[4];
this.win.style.top = this.getY().top;
},
close: function() {//关闭
this.win.style.display = 'none';
window.onscroll = null;
},
setOpacity: function(x) {//设置透明度
var v = x >= 100 ? '': 'Alpha(opacity=' + x + ')';
this.win.style.visibility = x<=0?'hidden':'visible';//IE有绝对或相对定位内容不随父透明度变化的bug
this.win.style.filter = v;
this.win.style.opacity = x / 100;
},
show: function() {//渐显
clearInterval(this.timer2);
var me = this,fx = this.fx(0, 100, 0.1),t = 0;
this.timer2 = setInterval(function() {
t = fx();
me.setOpacity(t[0]);
if (t[1] == 0) {clearInterval(me.timer2) }
},10);
},
fx: function(a, b, c) {//缓冲计算
var cMath = Math[(a - b) > 0 ? "floor": "ceil"],c = c || 0.1;
return function() {return [a += cMath((b - a) * c), a - b]}
},
getY: function() {//计算移动坐标
var d = document,b = document.body, e = document.documentElement;
var s = Math.max(b.scrollTop, e.scrollTop);
var h = /BackCompat/i.test(document.compatMode)?b.clientHeight:e.clientHeight;
var h2 = this.win.offsetHeight;
return {foot: s + h + h2 + 2+'px',top: s + h - h2 - 2+'px'}
},
moveTo: function(y) {//移动动画
clearInterval(this.timer);
var me = this,a = parseInt(this.win.style.top)||0;
var fx = this.fx(a, parseInt(y));
var t = 0 ;
this.timer = setInterval(function() {
t = fx();
me.win.style.top = t[0]+'px';
if (t[1] == 0) {
clearInterval(me.timer);
me.bind();
}
},10);
},
bind:function (){//绑定窗口滚动条与大小变化事件
var me=this,st,rt;
window.onscroll = function() {
clearTimeout(st);
clearTimeout(me.timer2);
me.setOpacity(0);
st = setTimeout(function() {
me.win.style.top = me.getY().top;
me.show();
},600);
};
window.onresize = function (){
clearTimeout(rt);
rt = setTimeout(function() {me.win.style.top = me.getY().top},100);
}
},
init: function() {//创建HTML
function $(id) {return document.getElementById(id)};
this.win=$('msg_win');
var set={minbtn: 'msg_min',closebtn: 'msg_close',title: 'msg_title',content: 'msg_content'};
for (var Id in set) {this[Id] = $(set[Id])};
var me = this;
this.minbtn.onclick = function() {me.set();this.blur()};
this.closebtn.onclick = function() {me.close()};
this.char=navigator.userAgent.toLowerCase().indexOf('firefox')+1?['_','::','×']:['0','2','r'];//FF不支持webdings字体
this.minbtn.innerHTML=this.char[0];
this.closebtn.innerHTML=this.char[2];
setTimeout(function() {//初始化最先位置
me.win.style.display = 'block';
me.win.style.top = me.getY().foot;
me.moveTo(me.getY().top);
},0);
return this;
}
};
Message.init();


4,求一个网站右下角浮动广告代码

http://www.zishu.cn" mce_href=" http://www.zishu.cn"> 子鼠测试. //这一行写了这个DIV是绝对定位,最好再加一下z-index;边框为1px的实线黑色边;距右边有0PX; ID=AD; function rightBottomAd(){var abc = document.getElementById("ad");abc.style.top = document.documentElement.scrollTop+document.documentElement.clientHeight-20+"px";//20是这个层的高度;setTimeout(function(){rightBottomAd();},50);}rightBottomAd();

5,求一段 广告固定在网页右下角的代码(CSS或JS都行),谢谢!!


function repos(x,y){ //x、y分别是你广告框的宽度和高度
layid = document.getElementById("ddiv"); //ddiv的广告框div的id
layid.style.left = (document.documentElement.scrollLeft + document.documentElement.clientWidth - x)+"px";
layid.style.top = (document.documentElement.scrollTop + document.documentElement.clientHeight - y)+"px";
}


这是广告框的css:style="position:absolute; z-index:1; width:175px; height:80px"

然后把上面这个repos(x,y)函数同时用到onload、onscroll、onresize的事件中

6,就是需要一段简单的左下角漂浮的JS广告代码,麻烦说明详细一点。

给你个简单的:









<!--
.div{
position: absolute;
border: 2px solid red;
background-color: #EFEFEF;
line-height:90px;
font-size:12px;
z-index:1000;
}
-->







左下...

function sc3(){
document.getElementById("Javascript.Div3").style.top=(document.documentElement.scrollTop+document.documentElement.clientHeight-document.getElementById("Javascript.Div3").offsetHeight)+"px";
document.getElementById("Javascript.Div3").style.left=(document.documentElement.scrollLeft)+"px";
}





<!--
function scall(){
sc3();
}
window.onscroll=scall;
window.onresize=scall;
window.onload=scall;
//-->



7,电脑桌面右下角出现一个广告窗口怎么办

很明显是广告(流氓)软件的自动安装,用自己电脑上的杀毒软件,以金山毒霸为例,通过安全级别鉴定打开金山清理专家,在“恶意软件查杀”标签中杀除即可,当然,不同的杀毒软件操作界面可能会有所不同,但只要找到有关于“插件的清除(或免疫)”的项目就可以。如你机子上没有的话,可以临时装一个楼上提到的:“360安全卫士”。也很实用。如果杀除后,重启又有了,就先断网,用楼上的方法找到它的进程,锁定它的位置,在它的文件夹里删除“后门程序”(即名字大致相同或完全不同,后缀不同的文件,以及时两个后缀的文件。大部分都是隐藏的,你可以在“控制面板”→“文件夹选项”→““查看”→“隐藏文件与文件夹”中,把默认设置“不显示隐藏的文件、文件夹或驱动器”改为“显示隐藏的文件、文件夹或驱动器”。)再进行查杀,如果问题依旧不能解决。就进入“Windows安全模式”下,用系统管理员账号(Administrator)查杀,如果还是不行,建议在“DOS”下,用命令提示符查杀,如果还是不行,请请高人检查BIOS刷新,如果还是不行,请换电脑吧!
虽然我说得略严重了些,但是,一个广告插件往往隐藏着更大的系统安全问题,诸如木马病毒等等,不可小视。