首先,上面的鏈接出現畸形。它應該是這樣的:
<a href="#learn">Learn More</a>
然後,在你的情況,我不會使用默認hashTags
方法,因爲你需要一個自定義的。退房this demo,它是從文件的Home wiki page(第四鏈接下的「導航」,但使用你的佈局我已經更新了它),它使用此代碼:
HTML
<nav>
<!-- added class="link" in case you have links that are not tied to the slider -->
<a href="#cat" class="link">cat</a>
<a href="#grey" class="link">grey</a>
<a href="#bear" class="link">bear</a>
<a href="#random" class="link">random</a>
<a href="#dog" class="link">dog</a>
</nav>
<div id="slider">
<div id="cat">
<img src="http://placekitten.com/300/200" alt="" />
</div>
<div id="grey">
<img src="http://placehold.it/300x200" alt="" />
</div>
<div id="bear">
<img src="http://placebear.com/300/200" alt="" />
</div>
<div id="random">
<img src="http://lorempixel.com/300/200" alt="" />
</div>
<div id="dog">
<img src="http://placedog.com/300/200" alt="" />
</div>
</div>
腳本
$(function() {
$('#slider').anythingSlider({
hashTags: false,
// Callback when the plugin finished initializing
onBeforeInitialize: function (e, slider) {
var hash = window.location.hash;
if (hash && $(hash).length) {
slider.options.startPanel = $(hash).closest('.panel').index() + 1;
}
},
onSlideComplete: function (slider) {
// if you use slider.$currentPage[0].id, you'll need
// to add an ID to each panel (<div id="cat">)
window.location.hash = '#' + slider.$currentPage[0].id;
},
});
$('a.link').click(function() {
$('#slider').anythingSlider($(this).attr('href'));
return false;
});
});
我會給你一個鏡頭,讓你知道。感謝您的指導! – rws907
工程很好。謝謝! – rws907
有沒有辦法阻止哈希標籤顯示在URL中?我試着添加event.preventDefault();在$('#slider')。之前的任何東西滑動語句,但它仍然顯示...我看到的問題是,我加載到面板一次,並提前2,但是如果散列在URL和用戶刷新可能會在視口中看到面板2和3,而不是將1&2,3&4,5&6等綁定到視口。 – rws907