Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
场景: 我打开我的应用程序,单击嵌入了 youtube 的 iframe 的屏幕,单击播放,iframe 顶部显示一个蓝色方块。
我点击返回,应用程序转到上一个屏幕,但蓝色方块仍然存在 ,为什么它显示这个蓝色方块?
我怎样才能摆脱它?
它显示蓝色方块的原因是通知用户用户单击了哪个链接/交互对象。这是内置在浏览器中的,因此用户知道他们点击了哪个链接,尤其是在链接靠得很近的旧网站上。
如果要从所有元素中删除蓝色轮廓,请将其添加到样式表中:
* { -webkit-tap-highlight-color: rgba(0,0,0,0); }
如果您只想删除视频上的蓝色框,请将上述样式应用于 youtube 嵌入。