Slick slider stops responding to click event and indexing breaks
up vote
0
down vote
favorite
I have 2 sliders which act as the nav for each other. Both sliders behave correctly until the bottom slider reaches a '.slick-cloned' slide and no longer responds to the click event. At that point, the sliders can still be dragged and work, but clicking on a slide to go to is effectively broken.
Thanks for the help!
HTML
<section class="hollow-hero-22">
<div id="backdrop"></div>
<div class="flex-container">
<div id="img-slider">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_1.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_2.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_3.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_4.jpg" alt="">
</div>
</div>
<div id="control-wrap" class="flex-container">
<div id="control-slider">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_1.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_2.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_3.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_4.jpg" alt="">
</div>
<div id="info-card">
<h1>Company Name Heading & Information</h1>
<p>This is filler content. The text in this region will updated by our professional content writers. This section will be updated. This is only filler content.</p>
<a href="#">About Us <i class="fa fa-caret-right"></i></a>
</div>
</div>
</section>
CSS
.hollow-hero-22 {
position: relative;
overflow: hidden;
padding-top: 2rem;
}
.hollow-hero-22 #backdrop {
position: absolute;
bottom: 0;
left: 50%;
height: 80%;
width: 90%;
background: #E3E3E3;
transform: translateX(-50%);
}
.hollow-hero-22 #img-slider {
flex: 1;
width: 100%;
}
.hollow-hero-22 #control-wrap {
align-items: flex-end;
position: relative;
margin-top: -222px;
margin-bottom: 4rem;
}
.hollow-hero-22 #control-slider {
width: 46%;
}
.hollow-hero-22 #control-slider img {
padding-right: .6rem;
cursor: pointer;
}
.hollow-hero-22 #info-card {
width: 55%;
padding: 3rem 3rem 0;
background: #E3E3E3;
}
.hollow-hero-22 h1 {
color: #000;
margin-bottom: 1rem;
}
.hollow-hero-22 p {
color: #000;
margin-bottom: 1rem;
font-size: 1.1rem;
}
.hollow-hero-22 a {
display: inline-flex;
align-items: center;
padding: .5rem 1.5rem;
color: #FFF;
background: lime;
}
.hollow-hero-22 a:hover {
background: green;
}
.hollow-hero-22 a i {
transition: all .3s ease;
padding-left: .5rem;
}
.hollow-hero-22 a:hover i {
padding-left: 1rem;
}
@media only screen and (max-width: 767px) {
.hollow-hero-22 #backdrop {
width: 100%;
}
}
JS
const $imgSlider = $('.hollow-hero-22 #img-slider')
const $ctrlSlider = $('.hollow-hero-22 #control-slider')
const $slide = $('.hollow-hero-22 #control-slider img')
$imgSlider.slick({
asNavFor: $ctrlSlider,
arrows: false,
infinite: false
})
$ctrlSlider.slick({
asNavFor: $imgSlider,
slidesToShow: 3,
arrows: false
})
$slide.on('click', function() {
console.log('click')
$slideIndex = $(this).attr('data-slick-index')
console.log('Slide index: ', $slideIndex)
$imgSlider.slick('slickGoTo', $slideIndex)
$ctrlSlider.slick('slickGoTo', $slideIndex)
})
javascript html css slick-slider
add a comment |
up vote
0
down vote
favorite
I have 2 sliders which act as the nav for each other. Both sliders behave correctly until the bottom slider reaches a '.slick-cloned' slide and no longer responds to the click event. At that point, the sliders can still be dragged and work, but clicking on a slide to go to is effectively broken.
Thanks for the help!
HTML
<section class="hollow-hero-22">
<div id="backdrop"></div>
<div class="flex-container">
<div id="img-slider">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_1.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_2.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_3.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_4.jpg" alt="">
</div>
</div>
<div id="control-wrap" class="flex-container">
<div id="control-slider">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_1.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_2.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_3.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_4.jpg" alt="">
</div>
<div id="info-card">
<h1>Company Name Heading & Information</h1>
<p>This is filler content. The text in this region will updated by our professional content writers. This section will be updated. This is only filler content.</p>
<a href="#">About Us <i class="fa fa-caret-right"></i></a>
</div>
</div>
</section>
CSS
.hollow-hero-22 {
position: relative;
overflow: hidden;
padding-top: 2rem;
}
.hollow-hero-22 #backdrop {
position: absolute;
bottom: 0;
left: 50%;
height: 80%;
width: 90%;
background: #E3E3E3;
transform: translateX(-50%);
}
.hollow-hero-22 #img-slider {
flex: 1;
width: 100%;
}
.hollow-hero-22 #control-wrap {
align-items: flex-end;
position: relative;
margin-top: -222px;
margin-bottom: 4rem;
}
.hollow-hero-22 #control-slider {
width: 46%;
}
.hollow-hero-22 #control-slider img {
padding-right: .6rem;
cursor: pointer;
}
.hollow-hero-22 #info-card {
width: 55%;
padding: 3rem 3rem 0;
background: #E3E3E3;
}
.hollow-hero-22 h1 {
color: #000;
margin-bottom: 1rem;
}
.hollow-hero-22 p {
color: #000;
margin-bottom: 1rem;
font-size: 1.1rem;
}
.hollow-hero-22 a {
display: inline-flex;
align-items: center;
padding: .5rem 1.5rem;
color: #FFF;
background: lime;
}
.hollow-hero-22 a:hover {
background: green;
}
.hollow-hero-22 a i {
transition: all .3s ease;
padding-left: .5rem;
}
.hollow-hero-22 a:hover i {
padding-left: 1rem;
}
@media only screen and (max-width: 767px) {
.hollow-hero-22 #backdrop {
width: 100%;
}
}
JS
const $imgSlider = $('.hollow-hero-22 #img-slider')
const $ctrlSlider = $('.hollow-hero-22 #control-slider')
const $slide = $('.hollow-hero-22 #control-slider img')
$imgSlider.slick({
asNavFor: $ctrlSlider,
arrows: false,
infinite: false
})
$ctrlSlider.slick({
asNavFor: $imgSlider,
slidesToShow: 3,
arrows: false
})
$slide.on('click', function() {
console.log('click')
$slideIndex = $(this).attr('data-slick-index')
console.log('Slide index: ', $slideIndex)
$imgSlider.slick('slickGoTo', $slideIndex)
$ctrlSlider.slick('slickGoTo', $slideIndex)
})
javascript html css slick-slider
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have 2 sliders which act as the nav for each other. Both sliders behave correctly until the bottom slider reaches a '.slick-cloned' slide and no longer responds to the click event. At that point, the sliders can still be dragged and work, but clicking on a slide to go to is effectively broken.
Thanks for the help!
HTML
<section class="hollow-hero-22">
<div id="backdrop"></div>
<div class="flex-container">
<div id="img-slider">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_1.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_2.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_3.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_4.jpg" alt="">
</div>
</div>
<div id="control-wrap" class="flex-container">
<div id="control-slider">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_1.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_2.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_3.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_4.jpg" alt="">
</div>
<div id="info-card">
<h1>Company Name Heading & Information</h1>
<p>This is filler content. The text in this region will updated by our professional content writers. This section will be updated. This is only filler content.</p>
<a href="#">About Us <i class="fa fa-caret-right"></i></a>
</div>
</div>
</section>
CSS
.hollow-hero-22 {
position: relative;
overflow: hidden;
padding-top: 2rem;
}
.hollow-hero-22 #backdrop {
position: absolute;
bottom: 0;
left: 50%;
height: 80%;
width: 90%;
background: #E3E3E3;
transform: translateX(-50%);
}
.hollow-hero-22 #img-slider {
flex: 1;
width: 100%;
}
.hollow-hero-22 #control-wrap {
align-items: flex-end;
position: relative;
margin-top: -222px;
margin-bottom: 4rem;
}
.hollow-hero-22 #control-slider {
width: 46%;
}
.hollow-hero-22 #control-slider img {
padding-right: .6rem;
cursor: pointer;
}
.hollow-hero-22 #info-card {
width: 55%;
padding: 3rem 3rem 0;
background: #E3E3E3;
}
.hollow-hero-22 h1 {
color: #000;
margin-bottom: 1rem;
}
.hollow-hero-22 p {
color: #000;
margin-bottom: 1rem;
font-size: 1.1rem;
}
.hollow-hero-22 a {
display: inline-flex;
align-items: center;
padding: .5rem 1.5rem;
color: #FFF;
background: lime;
}
.hollow-hero-22 a:hover {
background: green;
}
.hollow-hero-22 a i {
transition: all .3s ease;
padding-left: .5rem;
}
.hollow-hero-22 a:hover i {
padding-left: 1rem;
}
@media only screen and (max-width: 767px) {
.hollow-hero-22 #backdrop {
width: 100%;
}
}
JS
const $imgSlider = $('.hollow-hero-22 #img-slider')
const $ctrlSlider = $('.hollow-hero-22 #control-slider')
const $slide = $('.hollow-hero-22 #control-slider img')
$imgSlider.slick({
asNavFor: $ctrlSlider,
arrows: false,
infinite: false
})
$ctrlSlider.slick({
asNavFor: $imgSlider,
slidesToShow: 3,
arrows: false
})
$slide.on('click', function() {
console.log('click')
$slideIndex = $(this).attr('data-slick-index')
console.log('Slide index: ', $slideIndex)
$imgSlider.slick('slickGoTo', $slideIndex)
$ctrlSlider.slick('slickGoTo', $slideIndex)
})
javascript html css slick-slider
I have 2 sliders which act as the nav for each other. Both sliders behave correctly until the bottom slider reaches a '.slick-cloned' slide and no longer responds to the click event. At that point, the sliders can still be dragged and work, but clicking on a slide to go to is effectively broken.
Thanks for the help!
HTML
<section class="hollow-hero-22">
<div id="backdrop"></div>
<div class="flex-container">
<div id="img-slider">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_1.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_2.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_3.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_4.jpg" alt="">
</div>
</div>
<div id="control-wrap" class="flex-container">
<div id="control-slider">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_1.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_2.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_3.jpg" alt="">
<img src="http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/11/hero-22_4.jpg" alt="">
</div>
<div id="info-card">
<h1>Company Name Heading & Information</h1>
<p>This is filler content. The text in this region will updated by our professional content writers. This section will be updated. This is only filler content.</p>
<a href="#">About Us <i class="fa fa-caret-right"></i></a>
</div>
</div>
</section>
CSS
.hollow-hero-22 {
position: relative;
overflow: hidden;
padding-top: 2rem;
}
.hollow-hero-22 #backdrop {
position: absolute;
bottom: 0;
left: 50%;
height: 80%;
width: 90%;
background: #E3E3E3;
transform: translateX(-50%);
}
.hollow-hero-22 #img-slider {
flex: 1;
width: 100%;
}
.hollow-hero-22 #control-wrap {
align-items: flex-end;
position: relative;
margin-top: -222px;
margin-bottom: 4rem;
}
.hollow-hero-22 #control-slider {
width: 46%;
}
.hollow-hero-22 #control-slider img {
padding-right: .6rem;
cursor: pointer;
}
.hollow-hero-22 #info-card {
width: 55%;
padding: 3rem 3rem 0;
background: #E3E3E3;
}
.hollow-hero-22 h1 {
color: #000;
margin-bottom: 1rem;
}
.hollow-hero-22 p {
color: #000;
margin-bottom: 1rem;
font-size: 1.1rem;
}
.hollow-hero-22 a {
display: inline-flex;
align-items: center;
padding: .5rem 1.5rem;
color: #FFF;
background: lime;
}
.hollow-hero-22 a:hover {
background: green;
}
.hollow-hero-22 a i {
transition: all .3s ease;
padding-left: .5rem;
}
.hollow-hero-22 a:hover i {
padding-left: 1rem;
}
@media only screen and (max-width: 767px) {
.hollow-hero-22 #backdrop {
width: 100%;
}
}
JS
const $imgSlider = $('.hollow-hero-22 #img-slider')
const $ctrlSlider = $('.hollow-hero-22 #control-slider')
const $slide = $('.hollow-hero-22 #control-slider img')
$imgSlider.slick({
asNavFor: $ctrlSlider,
arrows: false,
infinite: false
})
$ctrlSlider.slick({
asNavFor: $imgSlider,
slidesToShow: 3,
arrows: false
})
$slide.on('click', function() {
console.log('click')
$slideIndex = $(this).attr('data-slick-index')
console.log('Slide index: ', $slideIndex)
$imgSlider.slick('slickGoTo', $slideIndex)
$ctrlSlider.slick('slickGoTo', $slideIndex)
})
javascript html css slick-slider
javascript html css slick-slider
edited Nov 12 at 22:34
asked Nov 9 at 17:55
Kevin Grant
635
635
add a comment |
add a comment |
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53231006%2fslick-slider-stops-responding-to-click-event-and-indexing-breaks%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53231006%2fslick-slider-stops-responding-to-click-event-and-indexing-breaks%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown