js+css实现文字波浪动画效果代码
代码语言:html
所属分类:动画
代码描述:js+css实现文字波浪动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> body { min-height: 100vh; max-height: 100%; display: flex; flex-direction: column; background-image: linear-gradient(to bottom right, #9bafd9, #103783); } div { flex: 1; display: flex; align-items: center; justify-content: center; color: #FFF; } .letter { font-size: 6rem; font-weight: 100; letter-spacing: 0.1rem; animation: wave 2s ease-in-out infinite; text-shadow: 2px 2px 0 #373D4D; } .space { margin: 0 1.75rem; } @keyframes wave { 50% { color: #692C87; text-shadow: 2px 12px 0px #373D4D; t.........完整代码请登录后点击上方下载按钮下载查看
网友评论0