gpt4 book ai didi

html - 如何在 x 轴的两侧(+ve 和 -ve)过渡?

转载 作者:行者123 更新时间:2023-11-28 16:09:50 26 4
gpt4 key购买 nike

我有一个按钮,悬停时会将其宽度从 50px 更改为 300px。但它只在一侧这样做(正面或负面)。我想要将其宽度更改为 300px,两侧为 150px

.container-2 {
width: 300px;
vertical-align: middle;
white-space: nowrap;
position: relative;
}
.container-2 #search {
width: 50px;
-webkit-transition: width .55s ease-in-out;
-moz-transition: widtg .55s ease-in-out;
-ms-transition: width .55s ease-in-out;
-o-transition: width .55s ease-in-out;
}
.container-2:hover #search {
outline: none;
width: 300px;
-webkit-transition-delay: 0.2s;
-moz-transition-delay: 0.2s;
transition-delay: 0.2s;
}
<!DOCTYPE html>
<html>

<head>
</head>

<body>
<div class="box">
<div class="container-2">
<span class="icon">
<i class="fa fa-search"></i>
</span>
<input type="search" id="search" placeholder="Search Wikipedia" />

</div>
</div>

</body>

</html>

最佳答案

这是一个使用两种不同实现的 fiddle 。第一个是原始的居中技巧。第二个是 flex 盒子。如果你能摆脱它,使用 flex。

这是不使用 flexbox 的 CSS:

#container-1 {
text-align: center;
}
#button-1 {
margin: auto;
}

这就是 flexbox:

#container-2 {
display: flex;
justify-content: center;
}

JSFiddle with CSS centering implementations

关于html - 如何在 x 轴的两侧(+ve 和 -ve)过渡?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38522066/

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