passer1991

随笔分类 -  html

1 2 3 下一页

将滚动条滚动到最底部
摘要:$("#q_msg_hisory_id")[0].scrollTop = $("#q_msg_hisory_id")[0].scrollHeight; 阅读全文

posted @ 2013-12-25 14:37 passer1991 阅读(119) 评论(0) 推荐(0)

html 圆角
摘要:*{ border-radius: 0px!important; webkit-border-radius: 0px!important; moz-border-radius: 0px!important;} 阅读全文

posted @ 2013-12-22 19:59 passer1991 阅读(196) 评论(0) 推荐(0)

html5画图
摘要:https://developer.mozilla.org/zh-CN/demos/detail/paint-my-dash 阅读全文

posted @ 2013-11-18 17:27 passer1991 阅读(112) 评论(0) 推荐(0)

如何移除webkit浏览器下 input 元素获得焦点后的默认样式
摘要:http://www.aiubug.com/?p=458 阅读全文

posted @ 2013-11-13 13:38 passer1991 阅读(204) 评论(0) 推荐(0)

给力的 Google HTML5 训练营(HTML5 Drag&Drop 拖拽、FileReader实例教程
摘要:http://blog.bingo929.com/google-enjoy-html5-drag-drop-filereaderenren.html 阅读全文

posted @ 2013-11-12 17:02 passer1991 阅读(118) 评论(0) 推荐(0)

WebSockets 简介
摘要:WebSockets 简介mozilla WebSocket API为Phonegap Android平台增加websocket支持,使默认成为socket.io首选通道选择HTML5学习笔记(七)-WebSockets API 阅读全文

posted @ 2013-11-07 16:19 passer1991 阅读(147) 评论(0) 推荐(0)

textarea 在 Chrome Safari FireFox 浏览器中禁用拖动和固定大小
摘要:http://www.cnblogs.com/zhanqi/archive/2011/03/16/1986422.html 阅读全文

posted @ 2013-10-31 09:54 passer1991 阅读(133) 评论(0) 推荐(0)

再谈IE的浏览器模式和文档模式
摘要:http://www.cnblogs.com/liuzhendong/archive/2012/04/27/2474363.html 阅读全文

posted @ 2013-10-30 15:07 passer1991 阅读(109) 评论(0) 推荐(0)

polar-clock
摘要:http://raphaeljs.com/polar-clock.html 阅读全文

posted @ 2013-10-30 11:26 passer1991 阅读(161) 评论(0) 推荐(0)

在JSP里使用CKEditor和CKFinder
摘要:http://www.cnblogs.com/yuepeng/archive/2013/04/01/2992097.html 阅读全文

posted @ 2013-10-29 15:23 passer1991 阅读(111) 评论(0) 推荐(0)

给div加滚动条,当内容超过它的范围的时候
摘要:overflow:scroll; 阅读全文

posted @ 2013-09-27 11:50 passer1991 阅读(133) 评论(0) 推荐(0)

Apple Style Effect
摘要:http://www.w3cplus.com/blog/52.html 阅读全文

posted @ 2013-09-24 17:20 passer1991 阅读(108) 评论(0) 推荐(0)

纯css的带下拉菜单的导航条
摘要:简单的弹窗效果 你好Sunfishes Blackbanded» sunfish Shadow bass Ozark bass White crappie Grunts Smallmouth grunt Burrito Pigfish Remoras Whalesucker Marlinsucker Ceylonese remora Spearfish remora Slender suckerfish 阅读全文

posted @ 2013-09-24 10:46 passer1991 阅读(316) 评论(0) 推荐(0)

background-position 用法详细介绍
摘要:http://www.cnblogs.com/huazaizai/archive/2010/11/03/1867907.htmlbackground-position 用法详细介绍语法:background-position : length || lengthbackground-position : position || position取值:length : 百分数 | 由浮点数字和单位标识符组成的长度值。请参阅 长度单位position : top | center | bottom | left | center | right说明:设置或检索对象的背景图像位置。必须先指定 b 阅读全文

posted @ 2013-09-22 16:58 passer1991 阅读(171) 评论(0) 推荐(1)

spring3-mvc实例-信息转换
摘要:http://yjplxq.blog.51cto.com/4081353/978957 阅读全文

posted @ 2013-08-26 16:08 passer1991 阅读(103) 评论(0) 推荐(0)

CSS中怎么让DIV居中
摘要:http://www.cnblogs.com/DebugLZQ/archive/2011/08/09/2132381.html 阅读全文

posted @ 2013-08-24 16:29 passer1991 阅读(112) 评论(0) 推荐(0)

浏览器窗口的大小
摘要:var w=window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth; var h=window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight; console.log(w+" "+h); 上边的代码是获得浏览器可视部分的高度和宽度. var dbsh=document.body.scrollHeight; ... 阅读全文

posted @ 2013-08-23 13:38 passer1991 阅读(150) 评论(0) 推荐(0)

js控制文本框中的字符数
摘要:function checkLength(which,remainderNum,maxChars) { if (which.value.length > maxChars) which.value = which.value.substring(0,maxChars); var curr = maxChars - which.value.length; document.getElementById(remainderNum).innerHTML = curr.toString();} 阅读全文

posted @ 2013-08-17 12:03 passer1991 阅读(177) 评论(0) 推荐(0)

jquery为动态添加的元素绑定事件
摘要:经测试 live,on 方法都不起作用.delegate方法是可以的.举例如下: $("#rightBox,#leftBox").delegate("p","click",function(){ if($(this).hasClass("selected1")) { $(this).removeClass("selected1"); console.log("right"); }else { $(this... 阅读全文

posted @ 2013-08-16 10:04 passer1991 阅读(128) 评论(0) 推荐(0)

Uncaught SyntaxError: Unexpected token <
摘要:http://blog.csdn.net/kingviker/article/details/7476403 阅读全文

posted @ 2013-08-10 12:04 passer1991 阅读(164) 评论(0) 推荐(0)

1 2 3 下一页

导航