摘要: 本文转载自:http://www.open-open.com/lib/view/open1449325854077.html Meta基础知识: H5页面窗口自动调整到设备宽度,并禁止用户缩放页面 空白页基本meta标签 其他meta标签 常见问题: 移动端如何定义字体font-family 打电话 阅读全文
posted @ 2016-09-13 17:24 小小只蜗牛 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 用户名: 密码: 重复密码: 注册 显示 function register(){ // console.log("ok"); var use={}; use.name=document.getElementById("txtname").value; use.pwd=document.getElementById("txtpwd1").value; //文本框验证... 阅读全文
posted @ 2016-09-13 16:53 小小只蜗牛 阅读(1649) 评论(0) 推荐(0) 编辑
摘要: 1、$(document).ready() 简写为$(function(){}) DOM结构绘制完成执行,而无需等到图片或其他媒体下载完毕. 2、$(window).load 在有时候确实我们有需要等到页面的所有东西都加载完后再执行时使用 3、window.onload=function(){} 必 阅读全文
posted @ 2016-09-13 12:06 小小只蜗牛 阅读(2124) 评论(0) 推荐(0) 编辑
摘要: if(window.addEventListener){ document.write(''); }else if(window.attachEvent){ document.write(''); //解决ie兼容getElementByClassName if(!document.getElementsByClassName){ documen... 阅读全文
posted @ 2016-09-06 16:42 小小只蜗牛 阅读(911) 评论(0) 推荐(0) 编辑
摘要: 注明:内容于http://www.cnblogs.com/chentongtong/p/5474553.html进一步整理。 1、现webkit内核的浏览器支持display: -webkit-box;属性, 所以网页中显示两行文字,超出部分省略,可以用样式 overflow: hidden;tex 阅读全文
posted @ 2016-09-06 16:15 小小只蜗牛 阅读(5900) 评论(1) 推荐(0) 编辑
摘要: <!--图表例子--> <!--/图表例子--> 1、清除图表的右下角水印及右上角菜单 2、将图表右侧标注 移动到图表正下方 阅读全文
posted @ 2016-06-08 10:45 小小只蜗牛 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 1、 兼容ie8圆角的解决方法:下载ie-css3.htc文件在css中加入behavior:url(ie-css3.htc);z-index:3; position:relative 即可 2、 去掉文本框的右下角:resize:none; 3、 html5新属性:hidden 对于不支持html 阅读全文
posted @ 2016-05-23 23:06 小小只蜗牛 阅读(464) 评论(0) 推荐(0) 编辑
摘要: Meta标签 vs Viewport http://www.2cto.com/kf/201409/335779.html http://blog.csdn.net/freshlover/article/details/40432247 Viewport 1、针对移动端浏览器iphone 网站开启对w 阅读全文
posted @ 2015-04-08 17:34 小小只蜗牛 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 1、IE下设置滚动条样式的属性scrollbar-arrow-color: color; /*三角箭头的颜色*/scrollbar-face-color: color; /*立体滚动条的颜色(包括箭头部分的背景色)*/scrollbar-3dlight-color: color; /*立体滚动条... 阅读全文
posted @ 2015-03-27 14:59 小小只蜗牛 阅读(3781) 评论(0) 推荐(0) 编辑
摘要: 首先要明白一种思想:结构和样式分离。结构和样式分离,就意味着:没有样式表,HTML文档也是一个完整的文档;没有样式表,也能正常阅读用HTML表达的所有内容。明白这种思想就能很好理解样式表中使用------ :before 和 :after中的content: ""; ------就算没有------... 阅读全文
posted @ 2015-03-25 11:01 小小只蜗牛 阅读(177) 评论(0) 推荐(0) 编辑