We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
问题描述 Uni H5平台下在 Safari 浏览器中点击元素周边会出现透明区域,Android下没有此问题。 尝试在App.vue 增加一下样式也不起作用 * { -webkit-tap-highlight-color: rgba(0,0,0,0); }
* { -webkit-tap-highlight-color: rgba(0,0,0,0); }
复现步骤 新建一个uni-app项目,修改pages/index/index.vue 为如下代码
` <view @click="click"> {{title}}
预期结果* 当点击view触发click事件的时候不会出现透明区域
实际结果 当点击view触发click事件的时候出现了透明区域 我尝试在App.vue增加样式 * { -webkit-tap-highlight-color: rgba(0,0,0,0); } 发现依然不起作用,点击的时候仍然出现了透明区域,除非是在index.vue下增加同样代码才有效果。也就是说在App.vue 设置的样式没有起到作用。
系统信息:
The text was updated successfully, but these errors were encountered:
实验证明在App.vue设定的全局样式在safari浏览器当中不起作用,而在Android浏览器以及chrome 开发者工具预览都是没问题的。
Sorry, something went wrong.
bc958ad
No branches or pull requests
问题描述
Uni H5平台下在 Safari 浏览器中点击元素周边会出现透明区域,Android下没有此问题。
尝试在App.vue 增加一下样式也不起作用
* { -webkit-tap-highlight-color: rgba(0,0,0,0); }
复现步骤
新建一个uni-app项目,修改pages/index/index.vue 为如下代码
`
<script> export default { data() { return { title: 'Hello' } }, methods: { click() { console.log('click') } } } </script>`<view @click="click">
{{title}}
预期结果*
当点击view触发click事件的时候不会出现透明区域
实际结果
当点击view触发click事件的时候出现了透明区域
我尝试在App.vue增加样式
* { -webkit-tap-highlight-color: rgba(0,0,0,0); }
发现依然不起作用,点击的时候仍然出现了透明区域,除非是在index.vue下增加同样代码才有效果。也就是说在App.vue 设置的样式没有起到作用。
系统信息:
The text was updated successfully, but these errors were encountered: