会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
大马德
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2016年9月8日
css3 三个属性:-webkit-tap-highlight-color,-webkit-touch-callout,-webkit-user-select
摘要: 去除 a标签点击出现透明背景: -webkit-tap-highlight-color: transparent; 关闭 a标签系统自动菜单: -webkit-touch-callout: none;关闭双击选择文本: -webkit-user-select: none;
阅读全文
posted @ 2016-09-08 14:57 大马德
阅读(310)
评论(0)
推荐(0)
编辑
2016年8月22日
jquery.flipster.js 3D旋转木马效果
摘要: 转自 http://www.htmleaf.com/jQuery/Slideshow-Scroller/201505241897.html
阅读全文
posted @ 2016-08-22 14:36 大马德
阅读(412)
评论(0)
推荐(0)
编辑
2016年8月5日
css3 position:sticky 固定导航平滑过渡
摘要: position:sticky是一个新的css3属性,它的表现类似position:relative和position:fixed的合体。 在可视区域内,表现是 relative属性 超过区域外,固定在屏幕上,表现是 fixed属性 一般方法是用js控制 position为 relative 和 f
阅读全文
posted @ 2016-08-05 17:42 大马德
阅读(1703)
评论(0)
推荐(0)
编辑
2016年1月25日
iframe跨域获取父页面url
摘要: iframe在跨域情况下,window.top.location.href无法访问到。可通过document.referrer访问到url,该属性是当前页面document的一个属性,记录这个页面的来源页面。关于介绍更多的document.referrer内容:http://driftcloudy....
阅读全文
posted @ 2016-01-25 18:02 大马德
阅读(451)
评论(0)
推荐(0)
编辑
2016年1月7日
jq 里的 each()妙用
摘要: 场景:为多个页面写了公用的方法,加载到不同的元素里,一般写法是:if($('.A').lenght){ $('.A').method();}if($('.B').lenght){ $('.B').method();}if($('.C').lenght){ $('.C').metho...
阅读全文
posted @ 2016-01-07 11:22 大马德
阅读(250)
评论(0)
推荐(0)
编辑
2015年10月20日
encodeURI()、decodeURI()及encodeURIComponent()、decodeURIComponent()区别
摘要: 上代码:var test1="http://www.w3school.com.cn/My first/"document.write(encodeURI(test1)+ "")document.write(decodeURI(test1))//输出http://www.w3school.com.cn...
阅读全文
posted @ 2015-10-20 15:17 大马德
阅读(149)
评论(0)
推荐(0)
编辑
2015年8月6日
事件注册 addEventListener 和 attachEvent区别
摘要: 1、addEventListener可冒泡可捕获,attachEvent只能冒泡;2、第二参数 fn, addEventListener是复制使用,而attachEvent是引用;1 function log(){2 console.log(this); 3 }4 5 document....
阅读全文
posted @ 2015-08-06 11:29 大马德
阅读(154)
评论(0)
推荐(0)
编辑
2015年5月11日
使用 json 对象 format 字符串
摘要: var format = function(str, obj){ var data = obj; if(typeof data === 'object'){ return str.replace(/\{...
阅读全文
posted @ 2015-05-11 15:27 大马德
阅读(413)
评论(0)
推荐(0)
编辑
2015年4月29日
github for Window 恢复仓库版本
摘要: 恢复仓库版本git reset --hard +HEAD 或者+要回滚的版本号git将单个文件恢复到历史版本的正确方法如下: git reset commit_id 版本号 git checkout -- 文件路径
阅读全文
posted @ 2015-04-29 17:53 大马德
阅读(239)
评论(0)
推荐(0)
编辑
2015年4月16日
jQuery 的方法扩展,$.extend()、$.fn.extend()和$.fn区别
摘要: $.extend(object)是在jQuery的 类 上扩展,如 $.ajax();$.fn.extend(object)是在jQuery的 实例 上扩展,也就是在 jQuery.prototype 上添加 成员函数, 如:$.prototype.method = function(){};$.f...
阅读全文
posted @ 2015-04-16 17:36 大马德
阅读(246)
评论(0)
推荐(0)
编辑
下一页