jquery平滑效果

发布于 2024-11-05 19:57:33 字数 184 浏览 3 评论 0原文

我想用这个做一些类似的

当您点击“描述”时,会出现文本。 我想用 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?

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

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

发布评论

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

评论(3

浮生面具三千个 2024-11-12 19:57:33

您可以在 jquery 中使用 fadeTo 函数

You can use fadeTo function in jquery

痴者 2024-11-12 19:57:33

也许是 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() ?

<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>

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.

許願樹丅啲祈禱 2024-11-12 19:57:33

您可以这样做:

<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:

<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 use an image or any element to be shown.
Hope this helps. Cheers

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