我正在尝试使用 javascript 和 razor 代码构建自己的滑块叠加层。
如果滑块包含 3 个图像,则底部将有 3 个“较小”的图像。我想要做的是可以单击底部图像之一,一旦完成,顶部滑块会更改图像。
这是我的 html + razor 部分:
@{
var slideshow = Model.Value<IEnumerable<IPublishedContent>>("SlideShowImages"); // From Umbraco published model
}
<section class="background-overlay-container" style="margin: 0; text-align: center;">
@foreach (var item in slideshow)
{
<div class="slideshow" style="background: url('@item.Url')left center/100% 140% no-repeat !important;">
<h3 style="position:absolute"></h3>
<button class="button-left" onclick="plusDivs(-1)">❮</button>
<button class="button-right" onclick="plusDivs(1)">❯</button>
</div>
}
</section>
<div class="dots" style="border: 0px solid red; width:100%; display:block; position:relative; padding:12px; text-align:center">
@foreach (var item in slideshow)
{
<img src="@item.Url" width="150" height="90" style="display:inline-block; cursor:pointer;" onclick="currentDiv()" />
}
</div>
这是不工作的javascript部分。我要写的是获取单击图像的当前路径并用它更新顶部 div 背景:
function currentDiv() {
var imgFullURL = document.querySelector('dots.img');
var slide = document.getElementsByClassName("slideshow").item(0);
slide.style.backgroundImage = "url('" + imgFullURL + "')";
}
var slideIndex = 1;
showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName("slideshow");
if (n > x.length) { slideIndex = 1 }
if (n < 1) { slideIndex = x.length }
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex - 1].style.display = "block";
}
浏览器输出
<section class="background-overlay-container" style="margin: 0; text-align: center;">
<div class="slideshow" style="background: url('/media/xk5bmxzg/book1.jpg')left center/100% 140% no-repeat !important;">
<h3 style="position:absolute"></h3>
<button class="button-left" onclick="plusDivs(-1)">❮</button>
<button class="button-right" onclick="plusDivs(1)">❯</button>
</div>
<div class="slideshow" style="background: url('/media/qf3laila/book6.png')left center/100% 140% no-repeat !important;">
<h3 style="position:absolute"></h3>
<button class="button-left" onclick="plusDivs(-1)">❮</button>
<button class="button-right" onclick="plusDivs(1)">❯</button>
</div>
<div class="slideshow" style="background: url('/media/qqjpadbt/book5.jpg')left center/100% 140% no-repeat !important;">
<h3 style="position:absolute"></h3>
<button class="button-left" onclick="plusDivs(-1)">❮</button>
<button class="button-right" onclick="plusDivs(1)">❯</button>
</div>
</section>
<div class="dots" style="border: 0px solid red; width:100%; display:block; position:relative; padding:12px; text-align:center">
<img src="/media/xk5bmxzg/book1.jpg" width="150" height="90" style="display:inline-block; cursor:pointer;" onclick="currentDiv()" />
<img src="/media/qf3laila/book6.png" width="150" height="90" style="display:inline-block; cursor:pointer;" onclick="currentDiv()" />
<img src="/media/qqjpadbt/book5.jpg" width="150" height="90" style="display:inline-block; cursor:pointer;" onclick="currentDiv()" />
</div>