treehouse : what would you like to learn today?
Web Design Web Development iOS Development

how to get anythingslider do it?

  • hello,


    I need a slideshow just like this page :
    http://www.t-bar.com.au/.

    I need to be able to add or remove images and images must contain links to open different new pages .

    can I use anythingslider? what customizations do I need?

    or can u please recommend me any other slider?

    I am in urgent need to get the solution..

    Istiaque Ahmed
  • Yes, you can use anythingSlider. The HTML would look something like this:
    <ul id="slider">
    <li>
    <a href="#">
    <img src="image.jpg" alt="" />
    </a>
    </li>
    <li>
    <a href="#">
    <img src="image2.jpg" alt="" />
    </a>
    </li>
    <li>
    <a href="#">
    <img src="image3.jpg" alt="" />
    </a>
    </li>
    </ul>