随笔分类 -  代码收集

摘要:css3 闪烁-webkit-animation: name .5s infinite ease-in-out;animation: name .5s infinite ease-in-out; @-webkit-keyframes name{ 0%{opacity:.6;} 100%{opacity:1;}} ele.css({/*css style add*/}); 置灰 ... 阅读全文
posted @ 2016-09-07 15:08 丶七月小先生丶 阅读(140) 评论(2) 推荐(0)
摘要:(function (doc, win) { var docEl = doc.documentElement, resizeEvt = ‘orientationchange’ in window ? ‘orientationchange’ : ‘resize’, recalc = function () { var clientWidth = docEl.clientWidth; if (!cl... 阅读全文
posted @ 2016-07-13 13:55 丶七月小先生丶 阅读(102) 评论(0) 推荐(0)
摘要:正则表达式获取地址栏参数 getRequestParams: function () { var url = window.location.href; var theRequest = {}; if (url.indexOf("?") > -1) { var currentPaths = url. 阅读全文
posted @ 2016-07-13 13:53 丶七月小先生丶 阅读(6622) 评论(0) 推荐(0)