gpt4 book ai didi

iOS html5 css3 按钮点击样式

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:51:09 27 4
gpt4 key购买 nike

我在 HTML5/CSS3/JavaScript 上编写我的应用程序。对于我的按钮,我创建了样式(在浏览器中一切正常),但是当我在 iPad 上启动我的应用程序时,我的事件效果会覆盖标准的 iOS 点击效果。我怎样才能覆盖这个标准效果?

我的风格:

<style type="text/css">    
.button {
display: inline-block;
width: 150px;
height: 50px;
background: #f78d1d;
background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
background: -moz-linear-gradient(top, #faa51a, #f47a20);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}

.button:ACTIVE {
background: #f47c20;
background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015) );
background: -moz-linear-gradient(top, #f88e11, #f06015);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015' );
}

我的按钮:

<a href="#" class="button"></a>

最佳答案

我相信您的问题的答案非常简单。

将以下 CSS 代码添加到您的按钮或正文标记(以影响整个文档)。

body { -webkit-appearance: none; }

这将删除 iOS 放置在某些 UI 元素上的按钮的默认样式。

希望对您有所帮助。

关于iOS html5 css3 按钮点击样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9722748/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com