温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

怎么使用纯CSS实现圆形导航菜单效果

发布时间:2021-03-19 13:52:37 阅读:231 作者:小新 栏目:web开发
前端开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

小编给大家分享一下怎么使用纯CSS实现圆形导航菜单效果,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!

直接上代码

css:

body {
    background-color#262626
}
.demo {
    padding2em 0;
    transformtranslate3d(000);
}
.navbar {
    width150px;
    height150px;
    line-height150px;
    border-radius50%;
    background#fff;
    margin70px auto;
    position: relative;
    cursor: pointer;
    text-align: center;
    font-size1.75em;
    font-weight: bold;
    color#383838;
    transition0.24s 0.2s;
}
.navbar:hover {
    backgroundrgba(2552552550.75);
}
.navbar .menu {
    list-style: none;
    padding0;
    margin0;
    position: absolute;
    top: -75px;
    left: -75px;
    border150px solid transparent;
    cursor: default;
    border-radius50%;
    transformscale(0);
    transition: transform 1.4s 0.07s;
    z-index: -1;
}
.navbar:hover .menu {
    transition: transform 0.4s 0.08s, z-index 0s 0.5s;
    transformscale(1);
    z-index1;
}
.navbar .menu li {
    position: absolute;
    top: -100px;
    left: -100px;
    transform-origin100px 100px;
    transition: all 0.5s 0.1s;
}
.navbar:hover .menu li {
    transition: all 0.6s;
}
.navbar .menu li a {
	transition:all .4s ease 0s;
    width45px;
    height45px;
    line-height45px;
    border-radius50%;
    background#fff;
    position: absolute;
    font-size60%;
    color#99b977;
    transition0.6s;
    text-decoration: none;
}
.navbar .menu li a:hover {
    background-color#2860F8;
    color#fff;
}
.navbar:hover .menu li:nth-child(1) {
    transition-delay0.02s;
    transformrotate(85deg);
}
.navbar:hover .menu li:nth-child(1a {
    transition-delay0.04s;
    transformrotate(635deg);
}
.navbar:hover .menu li:nth-child(2) {
    transition-delay0.04s;
    transformrotate(125deg);
}
.navbar:hover .menu li:nth-child(2a {
    transition-delay0.08s;
    transformrotate(595deg);
}
.navbar:hover .menu li:nth-child(3) {
    transition-delay0.06s;
    transformrotate(165deg);
}
.navbar:hover .menu li:nth-child(3a {
    transition-delay0.12s;
    transformrotate(555deg);
}
.navbar:hover .menu li:nth-child(4) {
    transition-delay0.08s;
    transformrotate(205deg);
}
.navbar:hover .menu li:nth-child(4a {
    transition-delay0.16s;
    transformrotate(515deg);
}
.navbar:hover .menu li:nth-child(5) {
    transition-delay0.1s;
    transformrotate(245deg);
}
.navbar:hover .menu li:nth-child(5a {
    transition-delay0.2s;
    transformrotate(475deg);
}
.navbar:hover .menu li:nth-child(6) {
    transition-delay0.12s;
    transformrotate(285deg);
}
.navbar:hover .menu li:nth-child(6a {
    transition-delay0.24s;
    transformrotate(435deg);
}
.navbar:hover .menu li:nth-child(7) {
    transition-delay0.14s;
    transformrotate(325deg);
}
.navbar:hover .menu li:nth-child(7a {
    transition-delay0.28s;
    transformrotate(395deg);
}
.navbar:hover .menu li:nth-child(8) {
    transition-delay0.16s;
    transformrotate(365deg);
}
.navbar:hover .menu li:nth-child(8a {
    transition-delay0.32s;
    transformrotate(355deg);
}
.navbar:hover .menu li:nth-child(9) {
    transition-delay0.18s;
    transformrotate(405deg);
}
.navbar:hover .menu li:nth-child(9a {
    transition-delay0.36s;
    transformrotate(315deg);
}

html:

<div class="demo">
	  <div class="container">
	<div class="row">
		  <div class="col-md-12">
			<div class="navbar">主菜单
				  <ul class="menu">
				<li><a href="https://www.17sucai.com/preview/1424582/2019-10-15/cy/index.html#" class="fa fa-facebook"></a></li>
				<li><a href="https://www.17sucai.com/preview/1424582/2019-10-15/cy/index.html#" class="fa fa-google-plus"></a></li>
				<li><a href="https://www.17sucai.com/preview/1424582/2019-10-15/cy/index.html#" class="fa fa-twitter"></a></li>
				<li><a href="https://www.17sucai.com/preview/1424582/2019-10-15/cy/index.html#" class="fa fa-linkedin"></a></li>
				<li><a href="https://www.17sucai.com/preview/1424582/2019-10-15/cy/index.html#" class="fa fa-pinterest"></a></li>
				<li><a href="https://www.17sucai.com/preview/1424582/2019-10-15/cy/index.html#" class="fa fa-rss"></a></li>
				<li><a href="https://www.17sucai.com/preview/1424582/2019-10-15/cy/index.html#" class="fa fa-instagram"></a></li>
				<li><a href="https://www.17sucai.com/preview/1424582/2019-10-15/cy/index.html#" class="fa fa-skype"></a></li>
				<li><a href="https://www.17sucai.com/preview/1424582/2019-10-15/cy/index.html#" class="fa fa-github"></a></li>
			  </ul>
				</div>
		  </div>
		</div>
  </div>
</div>

效果图:

怎么使用纯CSS实现圆形导航菜单效果

看完了这篇文章,相信你对“怎么使用纯CSS实现圆形导航菜单效果”有了一定的了解,如果想了解更多相关知识,欢迎关注亿速云行业资讯频道,感谢各位的阅读!

亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

css
AI

开发者交流群×