Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <div id="cuerpo-img">
  2. <div id="carousel">
  3. <div>
  4. <img src="[image path]" />
  5. </div>
  6. <div>
  7. <img src="[image path]" />
  8. </div>
  9. <div>
  10. <img src="[image path]" />
  11. </div>
  12. </div>
  13. ....
  14. </div>
  15.  
  16. $(function () {
  17. $('#carousel').carouFredSel({
  18. responsive: true,
  19. items: {
  20. visible: 1
  21. },
  22. scroll: {
  23. duration: 400,
  24. timeoutDuration: 4500,
  25. fx: 'uncover-fade'
  26. },
  27. pagination: '#pager'
  28. });
  29. });
  30.  
  31. #carousel div
  32. {
  33. height:275px;
  34. float: left;
  35. z-index:0;
  36. }
  37. #carousel img
  38. {
  39. min-width: 100%;
  40. min-height: 100%;
  41. z-index:0;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement