mip-fx-flying-carpet

标题 内容
类型 通用
支持布局 responsive, fixed-height, flex-item
所需脚本 https://c.mipcdn.com/static/v2/mip-fx-flying-carpet/mip-fx-flying-carpet.js

说明

镂空滚动。

镂空滚动组件将其内容包括在一个高度固定的容器中,其表现为容器随着正文上下滚动,而在视觉上,其内容不会随着滚动,从而形成镂空滚动。

其内容可以为一张图片,也可以为广告组件。

注意: 该组件只支持 responsivefixed-height 两种布局方式,因此使用时必须写明高度

示例

基本使用

  1. <style>
  2. body {
  3. background: #ccc;
  4. }
  5. mip-fx-flying-carpet {
  6. width: 90%;
  7. margin: auto;
  8. background: #fff;
  9. }
  10. .example2 {
  11. width: 60%;
  12. height: 300px;
  13. background: #000;
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. font-size: 20px;
  18. color: #fff;
  19. margin-bottom: 10px;
  20. }
  21. </style>
  22. <div style="height: 500px;"></div>
  23. <mip-fx-flying-carpet height="200">
  24. <mip-img src="https://www.mipengine.org/static/img/sample_01.jpg" height="275" width="414" layout="responsive" />
  25. </mip-fx-flying-carpet>
  26. <div style="height: 500px;"></div>
  27. <mip-fx-flying-carpet height="200">
  28. <div class="example2">
  29. 这是个广告 1
  30. </div>
  31. <div class="example2">
  32. 这是个广告 2
  33. </div>
  34. </mip-fx-flying-carpet>
  35. <div style="height: 500px;"></div>

查看例子编辑示例

属性

无必须属性

原文: https://www.mipengine.org/v2/components/layout/mip-fx-flying-carpet.html