我想用这个做一些类似的
当您点击“描述”时,会出现文本。 我想用 jQuery 创建这个效果,我该怎么做呢?
I want to make something similar with this
When you click on "description" text appears.I want to create this effect with jQuery, how can I make this?
您可以在 jquery 中使用 fadeTo 函数
You can use fadeTo function in jquery
也许是 fadeToggle() ?
<a href="#" id="appear">Clicky</a> <p class="textTo" style="display: none;">Hello World!</p> <script type="text/javascript"> $("#appear").click(function() { $(".textTo").fadeToggle(); }); </script>
查看工作小提琴:http://jsfiddle.net/vfcp4/
和 api:
http://api.jquery.com/fadeToggle/
api 显示了更多内容。
例如,有一些参数可以传递控制动画速度、类型等。
Perhaps a fadeToggle() ?
check out the working fiddle:http://jsfiddle.net/vfcp4/
and the api:
the api shows a bit more.
for example there are some parameters to pass controlling animation speed, type, etc.
您可以这样做:
<div id="description"> Description (click here to show) </div> <div id="textToShow" style="display:none"> Now I'm visible ! </div> $(document).ready(function(){ $("#description").click(function(){ $("#textToShow").fadeIn("slow"); }); });
您可以使用图像或任何要显示的元素。希望这有帮助。干杯
You can do it like this:
You can use an image or any element to be shown.Hope this helps. Cheers
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(3)
您可以在 jquery 中使用 fadeTo 函数
You can use fadeTo function in jquery
也许是 fadeToggle() ?
查看工作小提琴:
http://jsfiddle.net/vfcp4/
和 api:
http://api.jquery.com/fadeToggle/
api 显示了更多内容。
例如,有一些参数可以传递控制动画速度、类型等。
Perhaps a fadeToggle() ?
check out the working fiddle:
http://jsfiddle.net/vfcp4/
and the api:
http://api.jquery.com/fadeToggle/
the api shows a bit more.
for example there are some parameters to pass controlling animation speed, type, etc.
您可以这样做:
您可以使用图像或任何要显示的元素。
希望这有帮助。干杯
You can do it like this:
You can use an image or any element to be shown.
Hope this helps. Cheers