<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" / >
< title > ResponsiveSlides.js · Responsive jQuery slideshow< / title >
< meta name = "viewport" content = "width=device-width,initial-scale=1" / >
< link rel = "stylesheet" href = "../responsiveslides.css" / >
< link rel = "stylesheet" href = "demo.css" / >
< script src = "http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" > < / script >
< script src = "../new_structure2.js" > < / script >
< script >
$(function () {
$(".demo2").responsiveSlides({
auto: false,
pager: true,
nav: true,
speed: 800,
pauseControls: true,
before: function () {
$('.events').append("< li > before event fired.< / li > ");
},
after: function () {
$('.events').append("< li > after event fired.< / li > ");
}
});
});
< / script >
< / head >
< body >
< div id = "wrapper" >
< h1 > Do not use this, not a working version yet!< / h1 >
<!-- Slideshow 2 -->
< div class = "callbacks_container" >
< ul class = "demo demo2" >
< li >
< img src = "1.jpg" alt = "" / >
< p class = "caption" > This is a caption< / p >
< / li >
< li >
< img src = "2.jpg" alt = "" / >
< p class = "caption" > This is another caption< / p >
< / li >
< li >
< img src = "3.jpg" alt = "" / >
< p class = "caption" > The third caption< / p >
< / li >
< / ul >
< / div >
<!-- This is here just to demonstrate the callbacks -->
< ul class = "events" >
< li > < h3 > Example 3 callback events< / h3 > < / li >
< / ul >
< a href = "http://responsiveslides.com/" id = "download" > See the documentation< / a >
< p class = "footer" > ResponsiveSlides.js is created by < a href = "http://viljamis.com" > @viljamis< / a > . It's released under the MIT license. If you have any questions or feedback you can use the < a href = "https://github.com/viljami/ResponsiveSlides.js" > GitHub project page< / a > .< / p >
< / div >
< / body >
< / html >