Jquery - 使用 fadeIn 加载文本,在 5000 后更改文本并保持静止。随机选择文本
我想通过 jQuery 从文本文件(随机)加载 textString。首先,文本应淡入,然后停留 3 秒,然后再次淡出,然后文本链接应淡入 3 秒。然后站起来停下来(不再改变)。两个文本应出现在同一个
中。TextFileExample:
TextString 1 TextLink 1 TextString2 TextLink2 TextString3 TextLink3 . .
大约有 20 个文本部分(textString
和 textLink
)。在每个网页上重新加载文本,并且链接应该随机更改。
textFile 是 .txt 或 .xml 文件 - 哪个更容易。
I would like to load a textString from a text file (randomly) via jQuery. At first the text should fadeIn, then stand for 3 sec., then fadeOut again, then a the textLink should fadeIn for 3 sec. and stand and stop (no more changing). Both text should appear in the same <div>
.
TextFileExample:
TextString 1 TextLink 1 TextString2 TextLink2 TextString3 TextLink3 . .
There are about 20 parts of text (textString
and textLink
). On each webpage reload the text and the link should be randomly changed.
The textFile is a .txt or .xml file - whatever is easier.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于这种情况,XML/HTML 的处理稍微简单一些。例如,您可以保持 HTML 兼容,并在您的字符串/链接隐喻中(不过,您可以选择您喜欢的任何其他布局):
在您的目标页面中:
和 JavaScript 遵循以下原则:
查看它在 这个 jsFiddle (当然没有 Ajax 调用)。
XML/HTML is simpler somewhat to handle for this scenario. For example, you could stay HTML compliant, and within your string/link metaphor (you can choose any other layout you like, though):
And in your target page:
And JavaScript along the lines of:
See it working in this jsFiddle (without the Ajax call of course).
感谢您的回复...您帮助了我!
这是我的工作版本,带有 XML 重排:
HTML 代码:
和 XML 文件代码:
非常有帮助
Thank you for your response... you helped me!
Heres my working version with a XML redout:
The HTML CODE:
and the XML file code:
Great help