2
jdmkaan
8y

How can I make a slideshow like this that goes so when you touch the screen it goes to a page to display options in html css js?

Comments
  • 6
    $('div:not(.so)')
    .slideShow({
    html: false,
    js: true,
    css: true
    });
  • 2
  • 1
    @jdmkaan You're a good sport. In all reality, the implementation of that is quite simple. It just depends on the platform it will run on. (iPad, Android, Web, UWP, etc)
  • 2
    <a href="route.html">click me<a>

    (route.html)
    <form>
    <input placeholder="idk" />
    <input placeholder="idk" />
    <input placeholder="idk" />
    <button type="submit">ok<button>
    </form>

    I mean, technically that'll work... kind of. Just without the "working" part.
  • 1
    There are a billion jquery slider plugins. I recommend Slick.

    Put a click handler on each slide, match it to a dig overlay that corresponds to that slide. Pause when the div overlay is open, pause on close.
  • 0
    @noonesboy Slick is the go-to
Add Comment