transform 属性非 none 时,定位容器由视口改为该祖先
也就是可以跟随盒子移动而移动,
在子元素设置了position: fixed;在父元素设置transform 属性
类似这样效果
<view class="box-wrapper" style="column-count: 3;">
<view v-for="(item,index) in 50" style="transform:matrix(1, 0, 0, 1, 0, 0);" class="box-item">
<view class="box-item-l" style="margin-top: 10px;background-color: aquamarine;height: 150px;">
</view>
<view class="" style="position: fixed;top: 100px;">
title
</view>
</view>
</view>