加上,启动硬件加速渲染就行了。 transform: translate3d(0,0,0)
scroll-view里面的image进行模糊处理(blur),滑动后图片会无法显示?scroll-view 里面有一个iamge的列表,对该image进行模糊处理,开始是显示的一旦滑动后再滑回来就不再显示。 代码大致如下: <scroll-view scroll-x="true" style="width: 100%"> <view class="c-tab-container"> <block wx:for="{{tabList}}"> <view class="container-tab-title"> <view class="c-tab-title" bindtap="tabTitleClick" data-id="{{item.id1}}" data-typeName="{{item.title1}}" data-target="{{item.target1}}"> <image class="img-title" src="{{item.img1}}"></image> <view class="tab-title">{{item.title1}}</view> </view> </view> </block> </view> </scroll-view> .img-title{ width: 106rpx; height: 106rpx; border-radius: 53rpx; filter: blur(5rpx); }
2023-11-06测试发现安卓端的bartitle受webview页面的document.title影响,而iOS端如果在小程序端设置了bartitle则不受影响,若不设置也会跟随webview页面的document.title设置对应title。 也就是说小程序在不同端的webview页面的bartitle处理上不统一
使用webview组件时,页面bartitle会在webview加载完成后消失代码片段中,点击跳转后会跳转至webview页面,webview中内容加载时正常显示bartitle,加载完成后消失了
2023-03-10