css实现悬浮文字翻转菜单动画效果代码
代码语言:html
所属分类:菜单导航
代码描述:css实现悬浮文字翻转菜单动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!doctype html> <html> <head> <meta charset="utf-8"> <style> html, body{ padding:0px; margin:0px; font-family: 'Raleway', sans-serif; color:#FFF; height:100%; } body{ background:rgba(0, 0, 0, 0.5); } .container{ max-width:200px; background:rgba(0, 0, 0, 0.75); margin:40px auto; padding:10px 0px 20px 0px; border:1px solid #111; border-radius:4px; box-shadow:0px 4px 5px rgba(0, 0, 0, 0.75); } .link{ font-size:16px; font-weight:300; text-align:center; position:relative; height:40px; line-height:40px; margin-top:10px; overflow:hidden; width:90%; margin-left:5%; cursor:pointer; } .link:after{ content: ''; position:absolute; width:80%; border-bottom:1px solid rgba(255, 255, 255, 0.5); bottom:50%; left:-100%; transition-delay: all 0.5s; transition: all 0.5s; } .link:hover:after, .link.hover:after{ left:100%; } .link .text{ text-shadow:0px -40px 0px rgba(255, 255, 255, 1); transition:all 0.75s; transform:translateY(100%) translateZ(0); transition-delay:all 0.25s; } .link:hover .text, .link.hover .text{ text-shadow:0px -40px 0px rgba(255, 255, 2.........完整代码请登录后点击上方下载按钮下载查看
网友评论0