-
广告 1查看全部
-
妹子英语加点油哦!查看全部
-
注意原先关闭按钮中的display:none; 在面点击参数中修改为.show{display:block;}时要注意css的样式优先级, 要在.show之前加上 #tipCon .show{display:block;}查看全部
-
布局:查看全部
-
顶部广告:查看全部
-
右下角弹窗广告:查看全部
-
var $ = function(id){ return document.getElementById(id); } ($ 是变量,可以是任意名字)查看全部
-
1.position:fixed;相对浏览器窗口固定定位 2.javascript:void(0);表示一个死链接,点击后无任何效果 3.className 添加样式 4.封装document.getElementById()查看全部
-
<a href="javascript:void(0);" id="closeBtn"></a>语句中javascript:void(0);表示一个死循环,没有实际效果查看全部
-
fixed相对浏览器固定定位查看全部
-
html结构查看全部
-
js完美运动框架写法查看全部
-
jquery写法查看全部
-
<div id="ad"><img src="ad.png" width="960" height="385"/><span>X</span></div> <div id="content"><img src="数字商品-10-23.jpg" /></div> #ad span{cursor: pointer;}鼠标移上是小手的样式 <script>通过#ad的margin-top来制作 var mt=-385; var ad=document.getElementById('ad'); var span=ad.getElementsByTagName('span')[0]; var timer=null; span.onclick=function(){ ad.style.marginTop='-385px'; } setTimeout(function(){ timer=setInterval(function(){ if(mt!=0){ mt+=5; ad.style.marginTop=mt+'px'; }else{ clearInterval(timer); setTimeout(function(){ timer=setInterval(function(){ if(mt!=-310){ mt-=5; ad.style.marginTop=mt+'px'; }else{ clearInterval(timer); span.style.display='block'; } },30); },2000); } },30); },2000); </script>查看全部
-
<div id="ad"><img src="ad.png" width="960" height="385"/></div>img外面必须包着div,不能直接操纵img,那样图片会变形展开 <div id="content"><img src="数字商品-10-23.jpg" /></div> <script> var h=0; var ad=document.getElementById('ad'); var timer=null; setTimeout(function(){ timer=setInterval(function(){ if(h<385){ h+=5; ad.style.height=h+'px';别忘了写px ad.style.display='block'; }else{ clearInterval(timer); setTimeout(function(){ timer=setInterval(function(){ if(h>0){ h-=5; ad.style.height=h+'px'; }else{ clearInterval(timer); } },30); },3000); } },30); },3000); </script>查看全部
举报
0/150
提交
取消