css实现文字上下飘动阴影效果代码

代码语言:html

所属分类:布局界面

代码描述:css实现文字上下飘动阴影效果代码

代码标签: 上下 飘动 阴影 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">




    <style>
        body {
          display: flex;
          justify-content: center;
          align-items: center;
          height: 100vh;
          background: #8cc6ff;
          flex-direction: column;
        }
        
        .lightness {
          position: absolute;
          font-family: 'Santana', sans-serif;
          font-size: 64px;
          color: #fff;
          animation: float 3s ease-in-out 2s infinite alternate;
          filter: drop-shadow(1px 1px 4px #fff);
          z-index: 1;
        }
        
        @keyframes float {
          from {
            padding-bottom: 0px;
          }
          to {.........完整代码请登录后点击上方下载按钮下载查看

网友评论0