Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <div class="slider" id="slider" style="">
  2. <div class="slItems">
  3. <div class="slItem" style="background-image: url('<?php echo base_url('assets/frontend/img/banner.jpg') ?>');">
  4. </div>
  5. <div class="slItem" style="background-image: url(<?php echo base_url('assets/frontend/img/banner3.jpg') ?>);">
  6. </div>
  7. <div class="slItem" style="background-image: url(<?php echo base_url('assets/frontend/img/banner4.jpg') ?>);">
  8. </div>
  9. </div>
  10. </div>
  11.  
  12. .slider {
  13. height: 500px;
  14. position: relative;
  15. }
  16. .slItems {
  17. width: 100%;
  18. height: 500px;
  19. overflow: hidden;
  20. position: relative;
  21. }
  22. .slItem {
  23. width: 100%;
  24. height: 500px;
  25. position: absolute;
  26. top: 0;
  27. left: 0;
  28. background-size: cover;
  29. background-repeat: no-repeat;
  30. opacity: 0;
  31. visibility: hidden;
  32. -webkit-backface-visibility: hidden; /* Chrome, Safari, Opera */
  33. backface-visibility: hidden;
  34. }
  35. .slider [class*="ctrl"] {
  36. position: absolute;
  37. top: 50%;
  38. color: #fff;
  39. font-size: 85px;
  40. font-weight: bold;
  41. margin-top: -42.5px;
  42. cursor: pointer;
  43. }
  44. .ctrlNext {
  45. right: 50px;
  46. }
  47. .ctrlPrev {
  48. left: 50px;
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement