“插入钥匙” Javascript文字效果
我正在尝试用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过插入键,我假设您的意思是新单词的字母闪烁。我在一个看起来很酷的项目中使用了类似的东西 - 演示: http://sandbox.unwrongest.com/ jquery.airport/
或者类似的东西(我强调类似):
所以你可以从一段文本中抓取每个字母,然后将它们一个一个地淡入淡出:)
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:
So you could grab each letter from a piece of text and fade them in one by one :)