<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<style>
.title {
width: 300px;
line-height: 2;
}
.title span {
background-image: linear-gradient(to right, #f48, #f48);
background-repeat: no-repeat;
background-size: 0 2px;
background-position: right bottom;
transition: background-size 1s;
}
.title span:hover {
background-size: 100% 2px;
background-position: left bottom;
}
</style>
<div class="title">
<span>
这是很长的一段话商品详情或者个人中心顶部背景跟随滚动条缩放的动画配置商品详情或者个人中心顶部背景跟随滚动条缩放的动画配置商品详情或者个随滚动条缩放的动画配置商品详情或者个
</span>
</div>
</body>
</html>