实现的各种效果代码
Whisper_a
这个作者很懒,什么都没留下…
展开
-
右键自定义菜单
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 修改右键 #con{ width:100%; height: 800px;原创 2014-04-19 23:58:36 · 446 阅读 · 0 评论 -
抽奖
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 抽奖 #lp{ width:600px; height:600px;原创 2014-04-19 23:56:12 · 550 阅读 · 0 评论 -
实现滑入划出逐渐透明特效
渐渐滑出透明弹出层带有关闭按钮特效 *{padding:0;margin:0;} img{border:none;} a{text-decoration:none;} .PopupLayer{width:600px;height:400px;top:125px;padding:10px;position:fixed;le原创 2014-04-21 19:31:01 · 642 阅读 · 0 评论 -
var a = "abc def ghi";首字母大写的两种方法
1 var a = "abc def ghi"; var array1 = a.split(" "); for(var i = 0 ; i<array1.length; i++){ var temp = array1[i].split(''); temp.unshift(temp.shift().toUpperCase()) array1[i] = temp;原创 2014-08-21 10:55:55 · 1213 阅读 · 0 评论 -
jquery点击空白处隐藏div
$(document).bind("click",function(e){ var target = $(e.target); if(target.closest(".arrow,#input1").length == 0){/*.closest()沿 DOM 树向上遍历,直到找到已应用选择器的一个匹配为止,返回包含零个或一个元原创 2014-08-12 14:17:33 · 812 阅读 · 0 评论