css实现晶莹剔透的水滴动画效果代码
代码语言:html
所属分类:动画
代码描述:css实现晶莹剔透的水滴动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> body { width: 100vw; height: 100vh; background: linear-gradient(#387d13, #93bb8b); } .container { display: flex; position: relative; justify-content: center; align-items: center; width: 100vw; height: 100vh; overflow: hidden; } .dew { position: absolute; width: 11em; height: 10em; background: transparent; border: 1.3px solid rgba(9, 63, 12, 0.1); box-shadow: 5px 10px 25px rgba(9, 63, 12, 0.1) inset, 10px 20px 10px rgba(9, 63, 12, 0.2), 15px 20px 10px rgba(9, 63, 12, 0.1), -5px -15px 15px rgba(255, 255, 255, 0.9) inset; animation: shake linear 2s infinite; } .dew:before { content: .........完整代码请登录后点击上方下载按钮下载查看
网友评论0