drift-bottle.component_20241224144147.scss 918 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. }
  20. .top-image img {
  21. width: 100%;
  22. height: 100%;
  23. object-fit: fill; /* 使图片填充整个容器并可能被拉伸 */
  24. clip-path: ellipse(100% 80% at 50% 100%); /* 使用椭圆剪裁路径 */
  25. }
  26. /* 其他内容的样式可以根据需要添加 */
  27. .content-container {
  28. position: relative;
  29. z-index: 1; /* 确保其他内容在图片之上 */
  30. padding: 20px;
  31. margin-top: 120%; /* 内容从图片下方开始 */
  32. }