上一页 1 ··· 7 8 9 10 11 12 下一页
摘要: HTML5本地存储 一、HTML5 localStorage 在HTML5中,本地存储是一个window的属性,包括localStorage和 sessionStorage,从名字应该可以很清楚的辨认二者的区别,前者是一直存在本地的,后者只是伴随着session,窗口一旦关闭就没了。二者用法完全相同 阅读全文
posted @ 2016-04-29 09:48 辣牛 阅读(232) 评论(0) 推荐(0) 编辑
摘要: HTML5 一、Meta标签中的format-detection属性及其含义 意为:格式检测 或许你会有这样的经历:当你在制作手机端的页面中,点击了没有加任何链接的格式的数字时,这时手机会进行自动拔号提示操作! 1、禁止自动拨号 <meta name="format-detection" conte 阅读全文
posted @ 2016-04-28 11:33 辣牛 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 我一直以来所追求的进步,一定不要随着时间的流逝而淡化。 阅读全文
posted @ 2016-04-28 11:23 辣牛 阅读(231) 评论(0) 推荐(1) 编辑
摘要: ::selection { background:#d3d3d3; color:#555; } ::-moz-selection { background:#d3d3d3; color:#555; } ::-webkit-selection { background:#d3d3d3; color:# 阅读全文
posted @ 2016-04-11 19:52 辣牛 阅读(268) 评论(0) 推荐(0) 编辑
摘要: http://www.xuanfengge.com/create-a-semicircle-with-css3-variant-navigation.html demo:http://tympanus.net/Tutorials/CircularNavigation/ download:http:/ 阅读全文
posted @ 2016-04-11 19:49 辣牛 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 半圆: #circle1 { width: 100px; height: 200px; background-color: #a72525; -webkit-border-radius: 100px 0px 0px 100px;} 宽度为高度的一半,相应的圆角值,right 和top或bottom 阅读全文
posted @ 2016-04-11 19:43 辣牛 阅读(2563) 评论(0) 推荐(0) 编辑
摘要: /*箭头向上*/ .arrow-up { width:0; height:0; border-left:20px solid transparent; border-right:20px solid transparent; border-bottom:20px solid #000;} /*箭头向 阅读全文
posted @ 2016-04-11 19:15 辣牛 阅读(525) 评论(0) 推荐(0) 编辑
摘要: 伪类选择器 nth-child() 在IE6-8和FF3.0-浏览器不支持,CSS3中nth-of-type(n)(比如nth-of-type(1))这个特殊的类选择符可以样式更加个性的标题和段落等,不过,目前nth-of-type(n)只支持火狐3、opera、safari和chrome等部分浏览 阅读全文
posted @ 2016-04-11 18:54 辣牛 阅读(12021) 评论(0) 推荐(1) 编辑
摘要: by zhangxinxu from http://www.zhangxinxu.com本文地址:http://www.zhangxinxu.com/wordpress/?p=1709 一、深呼吸,直接内容 :nth-child和:nth-of-type都是CSS3中的伪类选择器,其作用近似却又不完 阅读全文
posted @ 2016-04-11 17:43 辣牛 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 用于在向服务器发送请求前添加一些处理函数。例如:搜寻附近店铺,未搜寻出来的时候显示:正在搜寻中... 常见的一种效果,在用ajax请求时,没有返回前会出现前出现一个转动的loading小图标或者“内容加载中..”,用来告知用户正在请求数据。这个就可以用beforeSend方法来实现。 代码如下: f 阅读全文
posted @ 2016-03-31 18:28 辣牛 阅读(3312) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 下一页