900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > html+css简单立体导航栏

html+css简单立体导航栏

时间:2018-10-18 07:34:56

相关推荐

html+css简单立体导航栏

html+css简单立体导航栏

一、简单立体导航栏效果二、代码实现1.html2.css

一、简单立体导航栏效果

二、代码实现

1.html

代码如下(示例):

<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1.0"><title>立体导航栏</title><link rel="stylesheet" href="./style.css" type="text/css"></head><body><div class="container"><nav><ul><li>Home</li><li>Services</li><li>Products</li><li>Clients</li><li>Contact</li></ul></nav></div></body></html>

2.css

*{margin: 0;padding: 0;box-sizing: border-box;font-family: "Popins",sans-serif;}.container{background: #ffbdc9;width: 100%;height: 100vh;display: flex;align-items: center;justify-content: center;}nav{background: #fff;border-radius: 50px;padding: 10px;box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0.4);}nav ul li{list-style: none;display: inline-block;padding: 13px 35px;margin: 10px;font-size: 18px;font-weight: 500;color: #777;cursor: pointer;position: relative;z-index: 2;transition: color 0.5s;}nav ul li::after{content: "";background: #f44566;width: 100%;height: 100%;border-radius: 30px;position: absolute;top: 100%;left: 50%;transform: translate(-50%,-50%);z-index: -1;opacity: 0;transition: top 0.5s,opacity 0.5s;}nav ul li:hover{color: #fff;}nav ul li:hover::after{top: 50%;opacity: 1;}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。