Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Since you mentioned you're working with jQuery already, take a look at <a href="http://designmodo.com/responsive-slider/" rel="nofollow">this tutorial</a> and <a href="http://jsfiddle.net/y66Jx/" rel="nofollow">a working example of the result</a>.</p> <p>Basically, you're going to want to make two list elements. One will contain the slides, and the other will contain the navigation buttons.</p> <hr> <p>EDIT:</p> <p>Since you're just looking for an example of the design, <a href="http://jsfiddle.net/GeCt9/7/" rel="nofollow">Here's a basic example</a> that shows how to make a layout like you're talking about without any actual functionality.</p> <p>HTML:</p> <pre><code>&lt;div class="slider"&gt; &lt;img class="image" src="http://i.imgur.com/dL3io.jpg" /&gt; &lt;div class="navigation-arrows"&gt; &lt;div class="arrow left"&gt;&lt;&lt;/div&gt; &lt;div class="arrow right"&gt;&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;div class="navigation"&gt; &lt;input type="radio" name="op"&gt; &lt;input type="radio" name="op"&gt; &lt;input type="radio" name="op"&gt; &lt;input type="radio" name="op"&gt; &lt;/div&gt; </code></pre> <p>CSS:</p> <pre><code>body { text-align: center; } .slider, .slider .image { width: 400px; } .slider .image, .navigation-arrows, .navigation-arrows .arrow { position: absolute; } .navigation-arrows, .navigation-arrows .arrow { height: 25px; } .slider { height: 250px; position: relative; margin: 20px auto; } .slider .image { height: 250px; left: 0; top: 0; } .navigation-arrows { width: 100%; margin: 0 auto; top: 125px; } .navigation-arrows .arrow { border-radius: 12.5px; background: #000000; color: #ffffff; width: 25px; line-height: 25px; cursor: pointer; } .navigation-arrows .left { left: 5px; } .navigation-arrows .right { right: 5px; } </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload