css实现玻璃形态图标按钮悬浮动画效果代码
代码语言:html
所属分类:悬停
代码描述:css实现玻璃形态图标按钮悬浮动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> body { position: relative; display: flex; justify-content: center; align-items: center; width: 100%; height: 100vh; min-height: 400px; background-color: #fbfbfb; } body .block-container { position: relative; width: 120px; height: 120px; margin: 32px; transition: 250ms; perspective: 500px; } body .block-container .btn-back { position: absolute; inset: 0; z-index: -1; width: inherit; height: inherit; border-radius: 32px; transition: 250ms; transform-style: preserve-3d; transform-origin: bottom right; transform: rotateZ(15deg); will-change: transform; box-shadow: 16px 0 40px #e4e4e4; } body .block-container .btn-back-1 { background: linear-gradient(135deg, #4682eb -20%, #01beff 120%); } body .block-container .btn-back-2 { background: linear-gradient(135deg, #5c46eb -20%, #013fff 120%); } body .block-container .btn-back-3 { background: linear-gradient(135deg, #ebe046 -20%, #ffac01 120%); } body .block-container .btn-front { po.........完整代码请登录后点击上方下载按钮下载查看
网友评论0