【发布时间】:2012-07-09 17:03:15
【问题描述】:
你好(我不是程序员,请多多包涵)
我正在使用 drupal 7。我的老板喜欢 KWICKS 滑块。我已经让它工作了,但只能使用 views-kwicks 模块的图像。
我希望能够在滑块中的图像上放置文本(预告片),并在单击时带有指向相应页面的链接,例如 http://demo.themesmania.com/creative/kwicks-slider
我该怎么做呢?谢谢!!
【问题讨论】:
标签: kwicks
你好(我不是程序员,请多多包涵)
我正在使用 drupal 7。我的老板喜欢 KWICKS 滑块。我已经让它工作了,但只能使用 views-kwicks 模块的图像。
我希望能够在滑块中的图像上放置文本(预告片),并在单击时带有指向相应页面的链接,例如 http://demo.themesmania.com/creative/kwicks-slider
我该怎么做呢?谢谢!!
【问题讨论】:
标签: kwicks
该链接中使用的标记是:
把这个放在你的<li></li> kwicks 中:
<div class="slide-description">
<h4>At vero eos et accusamus et</h4>
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti</p>
</div>
然后使用这个 css:
.slide-description { background-color:#000;
bottom: 0;
cursor: pointer;
display: block;
font-weight: normal;
left: 0;
line-height: normal;
padding: 16px 20px;
position: absolute;
width: 760px;z-index: 2;}
【讨论】: