gpt4 book ai didi

javascript - jQtouch 排序按钮

转载 作者:行者123 更新时间:2023-11-28 19:05:09 26 4
gpt4 key购买 nike

我查看了 jqtouch 的文档,但我无法弄清楚如何像这张附图那样创建 iphone 风格的排序按钮组。 http://img843.imageshack.us/img843/8669/captureov.png

您是否知道如何使用 jqtouch 执行此操作,是否有用于 jqtouch 执行此操作的插件?

感谢您的回复,卡萨卡尔

最佳答案

您可能需要自己动手,使用 CSS(样式)和 JavaScript(控制单个选择)。

this article 的帮助下,我快速设计了一个类似于iPhone 中分段控件的按钮组。 :

<style>
.buttonGroup
{
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-pack:justify;
-webkit-box-sizing: border-box;
}

.buttonGroup > li
{
display: block;
-webkit-box-flex: 1;
border: solid 1px #9a9a99;
border-left: none;
-webkit-border-radius: 0px;
text-align: center;
background-image:
-webkit-gradient(linear, left top, left bottom,
from(#fbfbfb),
to(#bdbdbd));
color: #6b6b6b;
font-size: 16px;
padding: 10px;
}

.buttonGroup > li:first-child
{
border-left: solid 1px #9a9a99;
-webkit-border-top-left-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
}

.buttonGroup > li:last-child
{
-webkit-border-top-right-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
}

.buttonGroup > li.selected
{
background-image:
-webkit-gradient(linear, left top, left bottom,
from(#2a55b1),
to(#6297f2));
color: #fff;
border-color: #193a7f;
}
</style>

<ul class="buttonGroup">
<li class="selected">button</li>
<li>button</li>
<li>button</li>
</ul>

关于javascript - jQtouch 排序按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3796365/

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