多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
#### 1、去掉移动端的地址栏 ***** ``` <meta name="apple-mobile-web-app-title" content="yeziyuan" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta content="telephone=no" name="format-detection" /> <meta name="full-screen" content="yes" /> <meta name="x5-fullscreen" content="true" /> ``` #### 2、去掉点击阴影 ***** ``` //移动端页面按钮或者图标,点击的瞬间会有阴影,这是浏览器自带的,要去除这个阴影可以在css样式里加上以下属性: -webkit-tap-highlight-color: rgba(0,0,0,0); -webkit-tap-highlight-color: transparent; ```