问题:加入了视频广告后,进入页面,视频广告加载后,page会被自动加上两个sytle,导致无法滚动,去除视频广告后就恢复正常,请问这是为什么?
element.style {
height: 663px;
overflow-y: hidden;
}
代码如下:
<view class="ad-container" >
<ad-custom unit-id="adunit-0584ee211609a622"></ad-custom>
</view>
page {
background: #fafafa;
color: #333;
}
.ad-container {
margin-top: 20rpx;
width: 100%;
}
你好,麻烦提供下能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
给page加入overflow-y: scroll; 也不行,还是会在运行时被自动加入overflow-y: hidden;