Using Callbacks

Home | Example 1 | Example 2 | Example 3 | Example 4

Please enable Javascript to view this slideshow.

  1. <div class="example" id="cesc">
  2.     <p>Please enable Javascript to view this slideshow</p>
  3. </div>
  4. ...
  5. <script src="http://www.flickrshow.co.uk/static/scripts/flickrshow-7.2.min.js"></script>
  6. <script>
  7.     var cesc = new flickrshow('cesc', {
  8.         onPlay: function() {
  9.             alert('The slideshow is playing');
  10.         },
  11.         onPause: function() {
  12.             alert('The slideshow is paused');
  13.         },
  14.         onMove: function(img) {
  15.             alert(img.getAttribute('data-flickr-title'));
  16.         },
  17.         tags:'nikkor50mmf14d',
  18.         user:'85173533@N00'
  19.     });
  20. </script>