纯css实现玻璃折射悬浮动画效果
代码语言:html
所属分类:动画
代码描述:纯css实现玻璃折射悬浮动画效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> :root { --tile: 40px; --radius: 50%; } BODY { display: -webkit-box; display: flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; min-height: 100vh; } .glass { position: relative; width: 400px; height: 400px; } .glass + .glass { margin-left: 1rem; } .glass:after, .glass:before { content: ''; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; -webkit-mask-position: 50% 50.........完整代码请登录后点击上方下载按钮下载查看
网友评论0