css布局实现文字数字立体凹凸效果代码
代码语言:html
所属分类:布局界面
代码描述:css布局实现文字数字立体凹凸效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400&display=swap'> <style> body { font-family: "Bai Jamjuree", sans-serif; font-size: 15rem; display: flex; align-items: center; justify-content: center; width: 100vw; height: 100vh; background-color: #001e2e; } .number { position: relative; animation: rotate 2s infinite ease-in-out; } span:nth-child(1) { position: absolute; font-weight: bold; filter: blur(10rem); color: #0067ff; } span:nth-child(.........完整代码请登录后点击上方下载按钮下载查看
网友评论0