Carousel Sensitivity
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Carousel Sensitivity
Not sure if this is even possible....I have a carousel working well, is there anyway to stop mouse clicks on it and in a tablet touching it because it screws it up each time you touch or click on it during playing. I have some timers that timeout and it affects them.
Thanks
Thanks
Re: Carousel Sensitivity
I'm sorry, there are no special options for that.
Re: Carousel Sensitivity
Sorry Pablo is it normal behavior that when you touch carousel on mobile device it stops? or have a done something incorrectly which is highly possible?
Otherwise do you suggest anything else I can use instead.
Thanks
Otherwise do you suggest anything else I can use instead.
Thanks
Re: Carousel Sensitivity
Yes, this is normal behavior.
Re: Carousel Sensitivity
You could try something like this in CSS:
Don't use the square brackets, just the object id
Code: Select all
#[object id] img {
pointer-events: none;
}
Re: Carousel Sensitivity
Thanks Roger will this disable any actions when screen is touched on device?
So would I add this as an html element, and should it go in between head tags.
Carousel1 img {
pointer-events: none;
}
Carousel1 is my device id
So would I add this as an html element, and should it go in between head tags.
Carousel1 img {
pointer-events: none;
}
Carousel1 is my device id
rogerl wrote: ↑Sat Jun 23, 2018 10:43 amYou could try something like this in CSS:Don't use the square brackets, just the object idCode: Select all
#[object id] img { pointer-events: none; }
Re: Carousel Sensitivity
Correct on html in head tag and:
Just did a quick check on Google, looks like should work for touch as well
Code: Select all
#Carousel1 img {
pointer-events: none;
}
Re: Carousel Sensitivity
Roger do you mind checking whether the syntax is correct? Ive tried different combinations that google provided but when I preview the page I can see the line of code just above my webpage indicating that something is wrong.
I've tried the following
#Carousel1 img {
pointer-events: none;
}
Carousel1 img {
pointer-events: none;
}
#Carousel1 {
pointer-events: none;
}
I've tried the following
#Carousel1 img {
pointer-events: none;
}
Carousel1 img {
pointer-events: none;
}
#Carousel1 {
pointer-events: none;
}
rogerl wrote: ↑Sun Jun 24, 2018 3:26 amCorrect on html in head tag and:Just did a quick check on Google, looks like should work for touch as wellCode: Select all
#Carousel1 img { pointer-events: none; }
Re: Carousel Sensitivity
Code: Select all
<style>
#Carousel1 img {
pointer-events: none;
}
</style>
I have only used this on a slideshow and that worked fine.
Re: Carousel Sensitivity
Roger will you be so kind to check out my one page test, I have one image setup as a rollover image and have entered the html code withing the page html header. However when I preview it the image still allows hovering.
Thanks
http://www.mediafire.com/file/tfl65bp5qpao2am/test.zip
Thanks
http://www.mediafire.com/file/tfl65bp5qpao2am/test.zip
rogerl wrote: ↑Mon Jun 25, 2018 1:30 amSyntax is correct. Did you have it within a style tag?Code: Select all
<style> #Carousel1 img { pointer-events: none; } </style>
I have only used this on a slideshow and that worked fine.
Re: Carousel Sensitivity
Sorry unable to open file. not recognised by WB 12 or 14
Re: Carousel Sensitivity
Came to realisation this is an extension file so have installed and it doesn't work. FF & Chrome had nothing to offer so suspect fault is within extension. File contained no images, just text and code offered does not work on text just images.
I have no expertise to fault find this for you.
I have no expertise to fault find this for you.
Re: Carousel Sensitivity
Thanks for trying anyway.
BTW- are you able to get it working on any of your projects?
BTW- are you able to get it working on any of your projects?
rogerl wrote: ↑Mon Jun 25, 2018 3:32 amCame to realisation this is an extension file so have installed and it doesn't work. FF & Chrome had nothing to offer so suspect fault is within extension. File contained no images, just text and code offered does not work on text just images.
I have no expertise to fault find this for you.