我可以使用 jquery 将图像向上滑动以显示更多内容吗

发布于 2024-11-29 01:59:02 字数 212 浏览 0 评论 0原文

My client wants something like the "Become a Member" area at the bottom of http://www.sdchamber.org/. (Actually she wants exactly the same thing, but I have no flash experience at all) I am a novice at jquery, but it seems like it should be able to do something like this. Can anyone help me out? Have an image slide up to reveal content under?

Thanks!

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

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

发布评论

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

评论(3

自控 2024-12-06 01:59:02

您可以在要悬停的内容下方放置一个

并使用 animate() 来增加 0px 的高度500pxhover() 上的其他内容,然后您可以对其进行动画处理,以在 blur() 上将高度降低回 0px代码>.

您需要有一个更大的 div,其中包含隐藏和非隐藏的 div,并将 focus()blur() 添加到这个更大的 div 中。

You can have a <div> below the thing you want to hover over and animate() it to increase the height from 0px to say 500px or something on hover() and then you can animate it to decrease the height back to 0px on blur().

And you need to have a bigger div which contains both the hidden and non-hidden div's and add the focus() and blur() to this bigger div.

独闯女儿国 2024-12-06 01:59:02
  1. 创建一个 div
  2. 在其中放置另一个包含要显示的内容的 div。
  3. 将图像以绝对位置放置在父级 div 中。
  4. 使用悬停事件在父div悬停时触发向上滑动或其他操作。
  1. Create a div
  2. Place another div within that contains the content to be displayed.
  3. Place the image in the parent div with absolute position.
  4. Use a hover event to trigger a slide up or something when the parent div is hovered.
谈场末日恋爱 2024-12-06 01:59:02

这不是发布此内容的地方。 StackOverflow 用于回答特定问题。请查看这个论坛,他们可以帮助您编写整个代码:

http://www. codingforums.com/forumdisplay.php?f=47

This is not a place to post this. StackOverflow is for answering specific questions. Please check out this forum where they can help you code the whole thing:

http://www.codingforums.com/forumdisplay.php?f=47

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