gpt4 book ai didi

php - jQuery 循环上一个/下一个按钮图像

转载 作者:行者123 更新时间:2023-11-28 18:31:53 25 4
gpt4 key购买 nike

我正在使用 Drupal 7 和 Field Slideshow 插件。我发布了我的幻灯片和工作。它有一个寻呼机,名为“Prev”和“Next”

我不要文字,必须图片。我该怎么做?

<div id="field-slideshow-<?php print $slideshow_id; ?>-controls" class="field-slideshow-controls">
<a href="#" class="prev"><?php print t('Prev'); ?></a>
<?php if (!empty($controls_pause)) : ?>
<a href="#" class="play"><?php print t('Play'); ?></a>
<a href="#" class="pause"><?php print t('Pause'); ?></a>
<?php endif; ?>
<a href="#" class="next"><?php print t('Next'); ?></a>
</div>

最佳答案

<div id="field-slideshow-<?php print $slideshow_id; ?>-controls" class="field-slideshow-controls">
<a href="#" class="prev"></a>
<?php if (!empty($controls_pause)) : ?>
<a href="#" class="play"><?php print t('Play'); ?></a>
<a href="#" class="pause"><?php print t('Pause'); ?></a>
<?php endif; ?>
<a href="#" class="next"></a>
</div>

像这样的样式:

.prev {
display:inline-block;
width:20px;
height:20px;
background: transparent url('path/to/prev/image.png') no-repeat center center;
}

.next {
display:inline-block;
width:20px;
height:20px;
background: transparent url('path/to/next/image.png') no-repeat center center;
}

或者你可以有这样的东西:

<div id="field-slideshow-<?php print $slideshow_id; ?>-controls" class="field-slideshow-controls">
<a href="#" class="prev"><img scr="path/to/prev/image.png" alt="<?php print t('Prev'); ?>" /></a>
<?php if (!empty($controls_pause)) : ?>
<a href="#" class="play"><?php print t('Play'); ?></a>
<a href="#" class="pause"><?php print t('Pause'); ?></a>
<?php endif; ?>
<a href="#" class="next"><img scr="path/to/next/image.png" alt="<?php print t('Next'); ?>" /></a>
</div>

关于php - jQuery 循环上一个/下一个按钮图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14053075/

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