色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

css仿微信菜單

傅智翔2年前7瀏覽0評論

本文介紹如何使用CSS仿微信菜單效果。

首先需要了解微信菜單的特點,它是一個懸浮在底部的圓形浮動按鈕,點擊后彈出菜單。所以我們需要做的就是通過CSS實現這個效果。

.menu-btn {
position: fixed;
bottom: 20px;
right: 20px;
width: 60px;
height: 60px;
background-color: #0084ff;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
.menu-btn i {
color: #fff;
font-size: 30px;
}
.menu-list {
position: fixed;
bottom: 90px;
right: 20px;
width: 240px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, .2);
overflow: hidden;
transform: scale(0);
transform-origin: bottom right;
transition: transform .3s;
z-index: 9998;
}
.menu-list.active {
transform: scale(1);
}
.menu-list ul {
list-style: none;
margin: 0;
padding: 0;
}
.menu-list li {
height: 60px;
line-height: 60px;
padding: 0 20px;
border-bottom: 1px solid #e5e5e5;
font-size: 18px;
}
.menu-list li:last-child {
border-bottom: none;
}

上面的代碼定義了菜單按鈕和菜單列表的樣式。菜單列表默認是隱藏的,點擊菜單按鈕后將菜單列表的scale屬性設置為1,實現動畫效果。

下面是使用的HTML代碼:

<div class="menu-btn">
<i class="fa fa-plus-circle"></i>
</div>
<div class="menu-list">
<ul>
<li>賬號管理</li>
<li>系統設置</li>
<li>退出登錄</li>
</ul>
</div>

在頁面引用相關的CSS和FontAwesome字體,就可以實現仿微信菜單效果了。