我目前正在开发一个私有框架来模仿 CSS 3 和 HTML 5 中的 iOS UI。我已经创建了大部分小部件,包括许多彩色渐变按钮,但是我很难在蓝色渐变中添加一个按钮被单击。
我尝试了以下示例:button:focus
, button:active
,button:hover
但似乎没有任何效果。单击 Mobile WebKit 中的按钮时,我看到的只是默认的灰色框。我想知道是否有人能指出我正确的方向。
本质上,我想这样做:
div.inner button:active {
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(173,182,211,1)), color-stop(1%,rgba(143,155,205,1)), color-stop(50%,rgba(48,74,184,1)), color-stop(51%,rgba(22,49,164,1)), color-stop(100%,rgba(41,89,165,1)));
background: -webkit-linear-gradient(top, rgba(173,182,211,1) 0%,rgba(143,155,205,1) 1%,rgba(48,74,184,1) 50%,rgba(22,49,164,1) 51%,rgba(41,89,165,1) 100%);
color: #fff;
text-shadow: 0 -1px 1px rgba(0,0,0,0.8);
outline: none;
-webkit-appearance: none;
}
希望这是有道理的!我什至尝试在使用jQuery“单击”按钮时将类添加到按钮,但再次没有任何反应。我想我的问题是,当用户点击 Mobile WebKit 中的元素时,正确的伪类是什么?