gpt4 book ai didi

javascript - 如何让这个导航从右向左打开?

转载 作者:太空宇宙 更新时间:2023-11-04 01:12:39 25 4
gpt4 key购买 nike

我试过摆弄这个导航的 css,但无法从右到左打开它。

.hamburger{
$width:25px;
$height:3px;
width:$width;
height:$height;
background:white;
display:block;
position:absolute;
top:50%;
left:50%;
margin-left:-$width/2;
margin-top:-$height/2;
transition:transform 200ms;
}

https://codepen.io/lbebber/pen/pvwZJp

最佳答案

改变

transform:translate3d(110px*$i,0,0);

transform:translate3d(-110px*$i,0,0);

在下面的 CSS 代码中,使其从右向左打开:

.menu-open:checked~.menu-item{
transition-timing-function:cubic-bezier(0.165, 0.840, 0.440, 1.000);
@for $i from 1 through $menu-items{

&:nth-child(#{$i+2}){
transition-duration:90ms+(100ms*$i);
transform:translate3d(-110px*$i,0,0);
}
}
}

关于javascript - 如何让这个导航从右向左打开?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50893521/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com