1

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

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

<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>
4

1 回答 1

1
<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>
于 2012-12-27T10:29:14.577 回答