🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
#### 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; ```