【发布时间】:2020-09-16 07:04:15
【问题描述】:
当鼠标悬停在the wolf 上时,我希望文本Along came 滑入。
但是the wolf 的位置不应该改变。 Along came 应该简单地从左侧滑入并淡入以完成句子。
.main {
width: 100vw;
text-align:center;
}
.addText {
display: none;
color: rgba(255,255,255,0);
transition: .5s;
}
.link:hover .addText {
display: inline;
color: red;
transform: translate(-10px, 00%);
}
<div class="main">
<div class="link">
<span class="addText">Along came </span>
the wolf
</div>
</div>
【问题讨论】: