Advertisement
Guest User

Untitled

a guest
Aug 14th, 2013
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. /* Relevant PHP: */
  2.  
  3. <?php if ( $s->slides_count() > 0 ) : ?>
  4. <ul class="ts-twentytwelve">
  5. <?php while ( $s->has_slides() ) : ?>
  6. <li id="ts-twentytwelve-slide-<?php $s->the_identifier(); ?>" class="ts-twentytwelve-slide <?php $s->draggable_parent(); ?>" style="background-image: url(<?php $s->the_background_url(); ?>);">
  7. <a href="<?php $s->the_link(); ?>" class="ts-twentytwelve-link <?php $s->make_draggable(); ?>" style="left: <?php $s->the_x(); ?>px; top: <?php $s->the_y(); ?>px">
  8. <div class="ts-twentytwelve-overlay">
  9. <h1 class="ts-twentytwelve-title"><?php $s->the_title(); ?></h1>
  10. <p class="ts-twentytwelve-description"><?php $s->the_description(); ?></p>
  11. </div>
  12. </a>
  13. </li>
  14. <?php endwhile; ?>
  15. </ul>
  16. <?php if ( $s->is_runtime() ) : ?>
  17. <a href="javascript:;" id="total-slider-previous">&laquo;</a>
  18. <a href="javascript:;" id="total-slider-next">&raquo;</a>
  19. <?php endif; ?>
  20. <?php endif; ?>
  21.  
  22. /* Relevant JS: */
  23.  
  24. /*
  25.  
  26. Twenty Twelve code below
  27.  
  28. */
  29.  
  30. jQuery('.ts-twentytwelve').cycle({
  31. slides: '.ts-twentytwelve-slide',
  32. timeout: 5000,
  33. speed: 1000,
  34. prev: $('#total-slider-previous'),
  35. next: $('#total-slider-next')
  36. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement