我正在使用PHP的网站的图像滑块,但data-src
类有<div id="camera" class="camera-wrap">
<div data-src="<?php echo base_url();?>images/index_slide01.jpg">
<div class="fadeIn camera_caption">
<h2 class="text_1 color_1">Solutions that you need!</h2>
<a class="btn_1" href="#">More info</a>
</div>
</div>
并且滑块未加载。任何帮助将不胜感激。
以下是我已经完成的事情:
public final Random random = new Random();
public void shuffle() {
for(int i = 0; i < 200; i++) {
int firstCardIndex = random.nextInt(number - 1);
int secondCardIndex = random.nextInt(number - 1);
Card firstCard = deck[firstCardIndex];
Card secondCard = deck[secondCardIndex];
deck[firstCardIndex] = secondCard;
deck[secondCardIndex] = firstCard;
}
}
答案 0 :(得分:1)
这可能会为你做到这一点
<div data-src="<?php echo base_url();?>/images/index_slide01.jpg">
刚刚在/
images
因为echo base_url();
将返回http://example.com/website
而不是/
。因此,要创建一个完整的路径,您需要在Images文件夹的前面添加/
斜杠。