Guest User

Untitled

a guest
Jan 20th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <div class="thumbs">
  2. <a href=""></a>
  3. <a href=""></a>
  4. <a href=""></a>
  5. <a href=""></a>
  6. </div>
  7.  
  8. .thumbs a {
  9. display:block;
  10. width:150px;
  11. height:100px;
  12.  
  13. float:left;
  14. background-image:url('images/m2g_logo.png');
  15. }
  16.  
  17. $(function(){
  18. $('#slider1').bxSlider({
  19. pager: true,
  20. buildPager: function(slideIndex){
  21. switch (slideIndex){
  22. case 0:
  23. return '<a href=""><img src="" /></a>';
  24. case 1:
  25. return '<a href=""><img src="" /></a>';
  26. case 2:
  27. return '<a href=""><img src="" /></a>';
  28. case 3:
  29. return '<a href=""><img src="" /></a>';
  30. }
  31. }
  32. });
  33. });
  34.  
  35. $(function(){
  36. $('#slider1').bxSlider({
  37. pager: true,
  38. buildPager: function(slideIndex){
  39. return '<a href=""><div></div></a>';
  40. }
  41. });
  42. });
  43.  
  44. a.pager-active > div{
  45. background: url("pager_selected.png") no-repeat scroll !important;
  46. display:inline;
  47. outline:none;
  48. }
  49.  
  50. .bx-pager a > div{
  51. display:inline;
  52. padding:2px; /*set this to half the width of your image*/
  53. background: url("pager_unselected.png") no-repeat scroll;
  54. position:relative;
  55. top:10px;
  56. outline:none;
  57. }
  58.  
  59. .bx-pager{
  60. text-align:center;
  61. }
Add Comment
Please, Sign In to add comment