暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_banner.scss 988B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /****************************
  2. #Common Banner
  3. ****************************/
  4. .banner-thumb {
  5. img {
  6. width: 100%;
  7. @include max-screen(767) {
  8. width: 100%;
  9. }
  10. }
  11. }
  12. /* hover-animation */
  13. .hover-animation {
  14. a {
  15. &::before {
  16. position: absolute;
  17. top: 0;
  18. left: 50%;
  19. right: 51%;
  20. bottom: 0;
  21. content: "";
  22. background: rgba(255, 255, 255, 0.2);
  23. opacity: 1;
  24. }
  25. &::after {
  26. position: absolute;
  27. top: 50%;
  28. left: 0;
  29. right: 0;
  30. bottom: 50%;
  31. content: "";
  32. background: rgba(255, 255, 255, 0.2);
  33. opacity: 1;
  34. }
  35. }
  36. &:hover {
  37. a {
  38. &::before {
  39. left: 0;
  40. right: 0;
  41. opacity: 0;
  42. @include transition(0.9s linear);
  43. }
  44. &::after {
  45. top: 0;
  46. bottom: 0;
  47. opacity: 0;
  48. @include transition(0.9s linear);
  49. }
  50. }
  51. }
  52. }
  53. /********************************
  54. #common-banner End
  55. ********************************/