悬浮文字填充动画效果
代码语言:html
所属分类:悬停
代码描述:悬浮文字填充动画效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> * { padding: 0; margin: 0; } body { display: flex; flex-direction: column; justify-content: center; align-items: center; position: relative; min-height: 100vh; font-family: Hack, monospace; } div { color: #727272; text-align: center; } p { margin: 16px; font-size: 96px; color: #ccc; text-transform: uppercase; font-weight: 600; transition: all 1s ease-in-out; position: relative; } p::before { content: attr(data-item); transition: all 1s ease-in-out; color: #8254ff; position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 0; overflow: hidden; } p:hover::before { width: 100%; } nav { margin: 25px; background: #f9f9f9; padding: 16px; } nav .menuItems { list-style: none; display: flex; } nav .menuItems li { margin: 50px; } nav .menuItems li a { text-decoration: none; color: #8f8f8f; font-size: 24px; font-weight: 400; transition: all 0.5s ease-in-out; position: relative; text-transform: uppercase; } nav .menuItems li a::before { content: attr(data-item); transition: 0.5s; color: #8254ff; position: absolute; top: 0; bottom: 0; left: 0; right: 0; widt.........完整代码请登录后点击上方下载按钮下载查看
网友评论0