gpt4 book ai didi

css - 在 jQuery Mobile 中为列表屏幕生成渐变效果?

转载 作者:行者123 更新时间:2023-11-28 12:49:16 25 4
gpt4 key购买 nike

![在此处输入图片描述][1]我正在开发一个 jQuery 移动应用程序。是否有可能在我的列表屏幕上产生渐变效果?我当前的代码如下:

<div data-role="page" data-theme="a" data-content-theme="a">
<div data-role="header" data-position="fixed" data-theme="b">
<h1>Header</h1>
</div>
<div class="content-primary" >
<ul data-role="listview" data-filter="true" data-input="#filterBasic-input" data-icon="false">
<li>
<h3><a href="#" style="text-decoration:none;color:#333333;">Sunday</a></h3>
<p class="topic"><strong>Sub</strong></p>
<p>Date</p>
</li>
<li>
<h3><a href="#" style="text-decoration:none;color:#333333;">Monday</a></h3>
<p class="topic"><strong>Sub </strong></p>
<p>Date</p>
</li>
<li>
<h3><a href="#" style="text-decoration:none;color:#333333;">Tuseday</a></h3>
<p class="topic"><strong>Sub</strong></p>
<p>Date</p>
</li>
</ul>
</div>
</div>

最佳答案

设置渐变背景为ui-listviewui-btn的背景为transparent

.ui-listview {
background: -webkit-linear-gradient(top, #fc3232 0%, #ffd242 100%);
}

.ui-listview li .ui-btn {
background: transparent;
}

Demo

关于css - 在 jQuery Mobile 中为列表屏幕生成渐变效果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24278555/

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