上一页 1 ··· 9 10 11 12 13 14 15 下一页
  2017年4月10日
摘要: function RndNum(n){ var rnd=[]; for(var i=0;i<n;i++) rnd[i] = Math.floor(Math.random()*10); return rnd; } 阅读全文
posted @ 2017-04-10 14:07 vsmart 阅读(1326) 评论(0) 推荐(0) 编辑
摘要: 翻译-你必须知道的28个HTML5特征、窍门和技术 by zhangxinxu from http://www.zhangxinxu.com本文地址:http://www.zhangxinxu.com/wordpress/?p=1058 原文地址:http://net…html5-features- 阅读全文
posted @ 2017-04-10 11:44 vsmart 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 预加载图片是提高用户体验的一个很好方法。图片预先加载到浏览器中,访问者便可顺利地在你的网站上冲浪,并享受到极快的加载速度。这对图片画廊及图片占据很大比例的网站来说十分有利,它保证了图片快速、无缝地发布,也可帮助用户在浏览你网站内容时获得更好的用户体验。本文将分享三个不同的预加载技术,来增强网站的性能 阅读全文
posted @ 2017-04-10 11:30 vsmart 阅读(731) 评论(0) 推荐(0) 编辑
摘要: 1,弹性核模型 新版父级display:flex; // 水平 方向 flex-direction:row; // 竖直 方向 flex-direction:colunm; flex-direction: row-reverse; flex-direction: column-reverse; di 阅读全文
posted @ 2017-04-10 11:28 vsmart 阅读(180) 评论(0) 推荐(0) 编辑
摘要: var a = { name:'hello' }; var str = JSON.stringify(a); b = JSON.parse(str); b.name = 'hi'; alert(b.name); // 'hi' alert(a.name); // 'hello' 阅读全文
posted @ 2017-04-10 11:16 vsmart 阅读(519) 评论(0) 推荐(0) 编辑
  2017年4月7日
摘要: 有关android及ios手机 中 input 调出数字键盘 只需要添加 type="number" pattern="[0-9]*" 属性。 阅读全文
posted @ 2017-04-07 17:16 vsmart 阅读(264) 评论(0) 推荐(0) 编辑
摘要: a{ border:none; -webkit-tap-highlight-color: rgba(0,0,0,0); -webkit-tap-highlight-color:transparent; outline:none; } 阅读全文
posted @ 2017-04-07 16:48 vsmart 阅读(157) 评论(0) 推荐(0) 编辑
  2017年3月31日
摘要: H5项目常见问题及注意事项 Meta基础知识: H5页面窗口自动调整到设备宽度,并禁止用户缩放页面 H5页面窗口自动调整到设备宽度,并禁止用户缩放页面 空白页基本meta标签 空白页基本meta标签 其他meta标签 其他meta标签 常见问题: 移动端如何定义字体font-family 移动端如何 阅读全文
posted @ 2017-03-31 10:53 vsmart 阅读(562) 评论(0) 推荐(0) 编辑
  2017年3月30日
摘要: 在chrome下: input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{ -webkit-appearance: none !important; margin: 0; } Firefox下: input[type="n 阅读全文
posted @ 2017-03-30 08:36 vsmart 阅读(143) 评论(0) 推荐(0) 编辑
  2017年3月13日
摘要: function AddFavorite(sURL, sTitle) { try { window.external.addFavorite(sURL, sTitle) } catch(e) { try { window.sidebar.addPanel(sTitle, sURL, "") } ca 阅读全文
posted @ 2017-03-13 10:59 vsmart 阅读(123) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 下一页