随笔分类 -  Mobile Develop

摘要://判断PC端跟MB端事件 var touchEnd = ('ontouchstart') in window ? 'touchend' : 'mouseup'; //安卓机点击按钮出现蓝色边框-webkit-tap-highlight-color: rgba(255, 0, 0, 0); //移动 阅读全文
posted @ 2016-10-11 15:35 停不下的风 阅读(492) 评论(0) 推荐(0)
摘要:/* 判断ipad */ @media only screen and (min-device-width : 768px) and (max-device-width : 1024px){ /* style */ } /* ipad横屏 */ @media only screen and (min-device-width : 768px) and (max-device-width... 阅读全文
posted @ 2016-04-27 22:31 停不下的风 阅读(839) 评论(0) 推荐(0)