“插入钥匙” Javascript文字效果

发布于 2024-10-11 03:28:13 字数 264 浏览 5 评论 0原文

我正在尝试用 javascript 复制某些单词的“插入键”效果,但距离我希望的结果还差得很远。基本上我有 4-5 个单词要一个接一个地显示,我想使用“插入键”效果来按顺序隐藏/显示单词。

像这样的东西: http://www.introwebsite.com/index2.asp (是的,我知道它在闪存中)。有人可以帮我吗?预先感谢并为我糟糕的英语感到抱歉。

I'm trying to replicate the "insert key" effect on some words with javascript but I'm nowhere near the result I hope. Basically I have 4-5 words that I want to display, one after another and I would like to use a "insert key" effect to hide/display the words sequentially.

Something like that: http://www.introwebsite.com/index2.asp (yes, I know it's in flash). Can anyone help me please? Thanks in advance and sorry for my poor english.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

万劫不复 2024-10-18 03:28:13

通过插入键,我假设您的意思是新单词的字母闪烁。我在一个看起来很酷的项目中使用了类似的东西 - 演示: http://sandbox.unwrongest.com/ jquery.airport/

或者类似的东西(我强调类似):

              var lis = $('#pieceOfText').hide();
              var i = 0;
              (function displayImages() {
                 lis.eq(i++).fadeIn(100, displayImages);
              })();

所以你可以从一段文本中抓取每个字母,然后将它们一个一个地淡入淡出:)

By insert key, i assume you mean letters flash across for new words. I used something similar in a project which looked pretty cool - demo: http://sandbox.unwrongest.com/jquery.airport/

Or something SIMILAR (i stress similar) to this:

              var lis = $('#pieceOfText').hide();
              var i = 0;
              (function displayImages() {
                 lis.eq(i++).fadeIn(100, displayImages);
              })();

So you could grab each letter from a piece of text and fade them in one by one :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文