摘要:
参考链接:http://blog.csdn.net/zhouziyu2011/article/details/53978293 说明:IE只有keyCode属性,FireFox中有which和charCode属性,Opera中有keyCode和which属性,Chrome中有keyCode、whic 阅读全文
摘要:
这个应该是flex和position冲突的解决方案<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <meta cha 阅读全文
摘要:
function throttle(method,delay,duration){ var timer=null, begin=new Date(); return function(){ var context=this, args=arguments, current=new Date();; ... 阅读全文
摘要:
预加载: var callback = function(){ //初始化游戏; gameInit(); } //预加载图片 img_preload(GameConfig.gameimg, callback); function img_preload(img, callback){ var onl 阅读全文
摘要:
target属性的应用 oUl.onmouseover = function(ev){ var ev = ev || window.event; var target = ev.target || ev.srcElement; //alert(target.innerHTML); if(target 阅读全文
摘要:
https://www.douban.com/note/343402554/ http://www.jb51.net/css/255811.html 最后我直接removeClass;把transform:rolate(...deg)去掉,改了下逻辑,解决! 百度到这里《小心 CSS3 Transf 阅读全文
摘要:
1、今天不知怎么swiper的onInit函数不起作用,怎么弄都不行; 把以前能行的案例的包都导进去还是不行,但是onSlideChangeEnd可以触发,晕死了。。。。 不,它触发了一次onInit,就是在不经意间触发了一次,后来不管怎么样都不能触发了。。。 ******************* 阅读全文
摘要:
http://www.admin10000.com/document/6304.html 1、 当网站添加到主屏幕后再点击进行启动时,可隐藏地址栏(从浏览器跳转或输入链接进入并没有此效果) <meta name="apple-mobile-web-app-capable" content="yes" 阅读全文