添加鼠标悬停时的淡入和淡出
好吧,我知道这个问题之前已经被问过,但我什么都不懂 我可以 html 但我不知道 javascript http://axy-david.net23.net/java/1.html 我希望每当鼠标光标悬停时面板都会淡入和淡出 另请记住,我没有 javascript 经验 其余的 .js 文件在这里: http://axy-david.net23.net/java/
okay i know this question has been asked before but i can't understand a thing
i can html but i have no idea of javascript
http://axy-david.net23.net/java/1.html
i want the panels to have fade in and fade out whenever mouse cursor is over
also please keep in mind that i have no experience in javascript
the rest of the .js files are here:
http://axy-david.net23.net/java/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试添加 jQuery 库并使用 fadeIn 和 fadeOut 函数。示例和文档在这里:
http://api.jquery.com/fadeIn/
编辑:更详细的分步:
下载 jQuery ( http://code.jquery.com/jquery-1.6.1。 min.js ),将其与其余 js 文件一起保存,并像其他文件一样将其添加为外部 JS 文件。
然后您就可以使用该站点上列出的功能。
这是他们的第一个例子:
You might try adding on the jQuery library and using the fadeIn and fadeOut functions. Examples and documentation here:
http://api.jquery.com/fadeIn/
EDIT: More detailed step-by-step:
Download jQuery ( http://code.jquery.com/jquery-1.6.1.min.js ), save it with the rest of your js files, and add it in as an external JS file like your other ones.
Then you can use the function listed at that site.
Here's the first example they have: