CSS 悬停过渡,距离中心的宽度
CSS hover transition, width from the center
我想知道如何使对象从中心开始变宽,而不是从左侧开始。
这是我的 HTML:
<html>
<body>
<a href='#'>Hover</a>
</body>
</html>
这是我的 CSS:
body{
margin:0;
padding:0;
background-color:#262626;
}
a{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
padding:10px 25px;
border:2px solid white;
text-decoration:none;
color:white;
font-family:verdana;
font-size:27px;
text-transform:uppercase;
letter-spacing:4px;
transform:1s;
}
a::before{
content:'';
position:absolute;
height:100%;
width:0%;
top:0;
left:50%;
z-index:-1;
background-image:linear-gradient(45deg, #eea949,#ff3984);
transition:.5s;
}
a:hover::before{
width:100%;
}
它不是在悬停时从中心加宽,而是从左侧加宽。我尝试添加 transform: translate(-50%, 0);到 css 中的 a:hover::before,它有点工作,但它有点不稳定(我不知道如何解释)。有人可以帮忙吗?
我想我解决了。我向元素添加了一个 ::after
,旋转渐变,并使 ::after
向左 50%
,而 ::before
向右 50%
。像这样:
body {
margin: 0;
padding: 0;
background-color: #262626;
}
a {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 10px 25px;
border: 2px solid white;
text-decoration: none;
color: white;
font-family: verdana;
font-size: 27px;
text-transform: uppercase;
letter-spacing: 4px;
transform: 1s;
}
a::before {
content: '';
position: absolute;
height: 100%;
width: 0%;
top: 0;
left: 50%;
z-index: -1;
border: none;
outline: none;
background-image: linear-gradient(45deg, #eea949, #ff3984);
transition: .5s;
}
a::after {
content: '';
position: absolute;
height: 100%;
width: 0%;
top: 0;
right: 50%;
z-index: -1;
background-image: linear-gradient(135deg, #ff3984, #eea949);
border: none;
outline: none;
transition: .5s;
}
a:hover::before {
width: 50%;
}
a:hover::after {
width: 50%;
}
<html>
<body>
<a href='#'>Hover</a>
</body>
</html>
希望对您有所帮助。如果您想查看 JSFiddle,请单击 here。
你可以只用背景:
body {
margin: 0;
padding: 0;
background-color: #262626;
}
a {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 10px 25px;
border: 2px solid white;
text-decoration: none;
color: white;
font-family: verdana;
font-size: 27px;
text-transform: uppercase;
letter-spacing: 4px;
transition: 0.5s;
background: linear-gradient(45deg, #eea949, #ff3984) center/0% 100% no-repeat;
}
a:hover {
background-size: 100% 100%;
}
<a href='#'>Hover</a>
将这些样式添加到 body 元素以使 link 居中。然后从 link 中删除 position: absolute; top: 0 and left:0;
(它们对于 flex 来说是多余的)并添加此样式使其成为父样式。
body{
display: flex;
justify-content: center;
align-items: center;
}
a{
position: relative
transition: all .1s;
}
然后根据需要在 a:hover::before{} 上添加 transform: translateX(-50%);
。
我发现这种格式没有抖动。
我想知道如何使对象从中心开始变宽,而不是从左侧开始。 这是我的 HTML:
<html>
<body>
<a href='#'>Hover</a>
</body>
</html>
这是我的 CSS:
body{
margin:0;
padding:0;
background-color:#262626;
}
a{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
padding:10px 25px;
border:2px solid white;
text-decoration:none;
color:white;
font-family:verdana;
font-size:27px;
text-transform:uppercase;
letter-spacing:4px;
transform:1s;
}
a::before{
content:'';
position:absolute;
height:100%;
width:0%;
top:0;
left:50%;
z-index:-1;
background-image:linear-gradient(45deg, #eea949,#ff3984);
transition:.5s;
}
a:hover::before{
width:100%;
}
它不是在悬停时从中心加宽,而是从左侧加宽。我尝试添加 transform: translate(-50%, 0);到 css 中的 a:hover::before,它有点工作,但它有点不稳定(我不知道如何解释)。有人可以帮忙吗?
我想我解决了。我向元素添加了一个 ::after
,旋转渐变,并使 ::after
向左 50%
,而 ::before
向右 50%
。像这样:
body {
margin: 0;
padding: 0;
background-color: #262626;
}
a {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 10px 25px;
border: 2px solid white;
text-decoration: none;
color: white;
font-family: verdana;
font-size: 27px;
text-transform: uppercase;
letter-spacing: 4px;
transform: 1s;
}
a::before {
content: '';
position: absolute;
height: 100%;
width: 0%;
top: 0;
left: 50%;
z-index: -1;
border: none;
outline: none;
background-image: linear-gradient(45deg, #eea949, #ff3984);
transition: .5s;
}
a::after {
content: '';
position: absolute;
height: 100%;
width: 0%;
top: 0;
right: 50%;
z-index: -1;
background-image: linear-gradient(135deg, #ff3984, #eea949);
border: none;
outline: none;
transition: .5s;
}
a:hover::before {
width: 50%;
}
a:hover::after {
width: 50%;
}
<html>
<body>
<a href='#'>Hover</a>
</body>
</html>
希望对您有所帮助。如果您想查看 JSFiddle,请单击 here。
你可以只用背景:
body {
margin: 0;
padding: 0;
background-color: #262626;
}
a {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 10px 25px;
border: 2px solid white;
text-decoration: none;
color: white;
font-family: verdana;
font-size: 27px;
text-transform: uppercase;
letter-spacing: 4px;
transition: 0.5s;
background: linear-gradient(45deg, #eea949, #ff3984) center/0% 100% no-repeat;
}
a:hover {
background-size: 100% 100%;
}
<a href='#'>Hover</a>
将这些样式添加到 body 元素以使 link 居中。然后从 link 中删除 position: absolute; top: 0 and left:0;
(它们对于 flex 来说是多余的)并添加此样式使其成为父样式。
body{
display: flex;
justify-content: center;
align-items: center;
}
a{
position: relative
transition: all .1s;
}
然后根据需要在 a:hover::before{} 上添加 transform: translateX(-50%);
。
我发现这种格式没有抖动。