Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. <style>
  2.  
  3.  
  4. .foto {
  5. opacity: 0;
  6. animation-name: animacao;
  7. animation-duration: 20s;
  8. animation-iteration-count: infinite;
  9. }
  10.  
  11. @keyframes animacao {
  12. 25% {
  13. opacity: 1;
  14. transform: scale(1.1, 1.1);
  15. }
  16.  
  17. 100% {
  18. opacity: 0;
  19. }
  20. }
  21.  
  22. .foto:nth-child(1) {
  23. animation-delay: 0;
  24. }
  25.  
  26. .foto:nth-child(2) {
  27. animation-delay: 10s;
  28. }
  29.  
  30. .foto:nth-child(3) {
  31. animation-delay: 15s;
  32.  
  33. }
  34.  
  35. .foto:nth-child(4) {
  36. animation-delay: 20s;
  37.  
  38. }
  39.  
  40. .foto:nth-child(5) {
  41. animation-delay: 25s;
  42.  
  43. }
  44. </style>
  45.  
  46. <div class="container-fluid h-100 mt-lg-0">
  47. <div class="row align-items-center h-100">
  48. <!-- SMARTPHONES IMAGE -->
  49. <div class="col-lg-7 d-none d-lg-block mb-5 py-5" style="border: 0px red solid; background-image: url('/dist/img/9364675fb26a.png');background-size: 28rem; background-position: top right; background-repeat: no-repeat;">
  50. <div class="d-flex justify-content-end mt-4 mr-4 mb-5 pt-3 pr-3">
  51. <div class="galeria">
  52. <img src="/dist/img/d6bf0c928b5a.jpg" alt="Responsive image" class="foto" style="border: 1px rgba(0,0,0, .2) solid; width: 15.5rem;">
  53. <img src="/dist/img/177140221987.jpg" alt="Responsive image" class="foto" style="border: 1px rgba(0,0,0, .2) solid; width: 15.5rem;">
  54. <img src="/dist/img/ff2c097a681e.jpg" alt="Responsive image" class="foto" style="border: 1px rgba(0,0,0, .2) solid; width: 15.5rem;">
  55. <img src="/dist/img/b27a108592d8.jpg" alt="Responsive image" class="foto" style="border: 1px rgba(0,0,0, .2) solid; width: 15.5rem;">
  56. <img src="/dist/img/5e04169b9308.jpg" alt="Responsive image" class="foto" style="border: 1px rgba(0,0,0, .2) solid; width: 15.5rem;">
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement