banner
RustyNail

RustyNail

coder. 【blog】https://rustynail.me 【nostr】wss://ts.relays.world/ wss://relays.world/nostr

Add a background blur effect to the mini program.

Page#

<view class='container'>
  <image src='' class='bg-blur'></image>
  <view>content</view>
</view>

CSS#

.bg-blur{
  position: fixed;
  top: 0;
  left: 0;
  border: 0;
  width: 100%;
  height: 100%;
  filter: blur(6px);
  z-index: -1;
}

Effect#

image

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.