gpt4 book ai didi

javascript - jQuery 动画只逐字渲染文本

转载 作者:行者123 更新时间:2023-11-28 17:55:15 24 4
gpt4 key购买 nike

我不确定这是否更像是一个 jQuery、CSS 或浏览器相关的问题,但这是我一直想知道的:

在下面的 jsfiddle/代码中,动画以在动画中逐个像素地显示单词“this”开始,但之后它不会显示扩展跨度的文本,直到呈现整个单词;这是为什么?还有,能不能改成像第一个字的动画?

jsfiddle:http://jsfiddle.net/XKVng/

<html>
<style type="text/css">
#mask {
z-index: 3;
position: absolute;
float: right;
width: 0;
height: 20px;
color: white;
margin:0;
background-color: black;
}
#text {
position: absolute;
z-index: 0;
background-color: white;
color: black;
width: 200px;
margin:0;
float: right;
height: 20px;
}

</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
$("document").ready(function() {
var width = $("#text").width();
var opts = { "easing" : "linear", "duration" : 4000, "queue" : false};
$("#mask").animate({"width" : width}, opts);
$("#maskBg").animate({"width" : width}, opts);
});



</script>
<body>
<span id="mask">this is some text to demo with</span>
<span id="text">this is some text to demo with</span>
</body>
</html>

我一直在使用的浏览器是 Chromium Version 31.0.1650.63 Built on Debian 7.2,在 Debian 7.3 (238485) 上运行。

非常感谢!

最佳答案

这是因为在动画过程中单词会换行。您可以通过添加 white-space:nowrap 来解决此问题到 #mask 元素,从而防止发生这种默认行为。

UPDATED EXAMPLE HERE

#mask {
z-index: 3;
position: absolute;
float: right;
width: 0;
height: 20px;
color: white;
margin:0;
background-color: black;
white-space:nowrap;
}

关于javascript - jQuery 动画只逐字渲染文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21446981/

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