css实现文字霓虹灯签名效果代码

代码语言:html

所属分类:布局界面

代码描述:css实现文字霓虹灯签名效果代码

代码标签: css 文字 霓虹灯 签名

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

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  

      <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Monoton&family=Playwrite+CU:wght@100..400&display=swap" rel="stylesheet">

    <link href="https://fonts.googleapis.com/css2?family=Monoton&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playwrite+CU:wght@100..400&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">

  
  
  
<style>
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    background: #090000;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

h1 {
    font-family: "Nunito", sans-serif;
  .........完整代码请登录后点击上方下载按钮下载查看

网友评论0