Greetings! I am currently working on creating a slide using Jquerytools. Here are some helpful links for reference:
To view the gallery demonstration, please visit:
For information on autoscroll functionality, check out:
If you'd like to see my code and progress, feel free to visit this link: http://jsfiddle.net/PcAwU/
I'm facing an issue with merging the Play & Pause buttons. I want only one button active at a time - either Play or Pause. Any tips on how to achieve this would be greatly appreciated.
Additionally, I'd like to change the button implementation from:
<button type="button" onClick="api.play()">Play</button>
To using image buttons like:
<a href="#" onClick="api.play()" ><img src="#"></a>
If you could provide me with the correct syntax for this conversion, it would be very helpful.
Lastly, I attempted to replace the "click" event with "hover" in a certain section of my code to trigger actions on hover instead. However, I encountered a problem where the first image wouldn't show up upon page load, causing a malfunction. This occurs in the following segment:
This line is where I changed "click" to "hover":
$(".items img").click(function() {