CSS 在悬停时将背景颜色从 50% 过渡到 100%
我正在尝试在悬停时创建一个简单的缓入过渡,其中背景颜色从视口的 50% 增加到视口的 100%。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
.container {
height: 100vh;
width: 50%;
background-color: #999;
transition: all 0.5s ease-in-out;
}
.container:hover{
/* width: 100% */
}
</style>
</head>
<body>
<div class="container">
</div>
</body>
</html>
我尝试了多种组合,但无法顺利过渡。有没有一种直接的方法可以通过 css 转换来做到这一点,或者我是否需要考虑使用 Javascript?
I am trying to create a simple ease-in-out transition on hover where the background colour increases from 50% of the viewport to 100% of the viewport.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
.container {
height: 100vh;
width: 50%;
background-color: #999;
transition: all 0.5s ease-in-out;
}
.container:hover{
/* width: 100% */
}
</style>
</head>
<body>
<div class="container">
</div>
</body>
</html>
I have tried numerous combinations but cannot get a smooth transition. Is there a straight forward way to do this with a css transition or do I need to be looking towards using Javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这是一个平稳的过渡。
I think this is a smooth transition.