drift-bottle.component_20241224153046.scss 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /* drift-bottle.component.scss */
  2. :host {
  3. display: block;
  4. }
  5. /* 设置页面背景色 */
  6. ion-content {
  7. --background: transparent; /* 确保内容背景透明 */
  8. position: relative;
  9. height: 100vh; /* 确保内容高度占满整个视口 */
  10. }
  11. .top-image {
  12. position: absolute;
  13. top: 0;
  14. left: 0;
  15. width: 100%;
  16. height: 80%; /* 图片占据页面的70%高度 */
  17. overflow: hidden;
  18. z-index: 0; /* 确保图片在工具栏之下 */
  19. &::before {
  20. content: '';
  21. position: absolute;
  22. z-index: 1;
  23. top: 0;
  24. left: 0;
  25. width: 100%; /* 双倍宽度以支持平移 */
  26. height: 100%;
  27. background: url('/assets/img/漂流瓶.jpg') no-repeat center / cover;
  28. animation: wave-effect 5s linear infinite;
  29. filter: blur(5px); /* 添加轻微模糊效果,使波浪更柔和 */
  30. }
  31. }
  32. @keyframes wave-effect {
  33. 0% {
  34. transform: translateX(0);
  35. }
  36. 100% {
  37. transform: translateX(-50%);
  38. }
  39. }
  40. .top-image img {
  41. width: 100%;
  42. height: 100%;
  43. object-fit: fill; /* 使图片填充整个容器并可能被拉伸 */
  44. clip-path: ellipse(140% 130% at 50% -30%); /* 使用椭圆剪裁路径 */
  45. }
  46. .button-container {
  47. position: absolute;
  48. bottom: 15%; /* 调整此值以改变按钮距离底部的距离 */
  49. z-index: 2; /* 确保按钮在图片之上 */
  50. }
  51. .left-button {
  52. left: 30px; /* 距离左边的距离 */
  53. }
  54. .right-button {
  55. right: 30px; /* 距离右边的距离 */
  56. }
  57. .button-container img {
  58. width: 60px; /* 按钮图片宽度 */
  59. height: 60px; /* 按钮图片高度 */
  60. display: block;
  61. }
  62. .circular-button {
  63. width: 60px; /* 按钮图片宽度 */
  64. height: 60px; /* 按钮图片高度 */
  65. border-radius: 50%; /* 将图片剪裁为圆形 */
  66. object-fit: cover; /* 保证图片填充圆形区域 */
  67. transform: scale(1.5); /* 放大1.5倍 */
  68. transform-origin: center; /* 放大的基点为中心 */
  69. transition: transform 0.3s ease; /* 添加平滑过渡效果 */
  70. }
  71. /* 如果需要,可以在悬停时添加一些效果 */
  72. .circular-button:hover {
  73. transform: scale(1.6); /* 鼠标悬停时稍微再放大一点 */
  74. }