iPhoto 相册过渡

发布于 2024-08-24 05:32:45 字数 156 浏览 8 评论 0原文

我正在尝试在苹果 iphoto 相册中实现相同的滚动效果。希望大家在苹果iphoto中看到,当我们将鼠标移到相册上时,里面的图片就会一张一张的显示出来。有人知道这是如何实现的吗?我正在尝试在我的 HTML 页面中实现相同的功能。

请帮助

谢谢,

石斌

I am trying to implement the same scrolling effect in the apple iphoto album. Hope you have seen in apple iphoto that when we move the mouse over the album, the images inside it will be shown one by one. Anyone knows how this is implemented.? i am trying to implement the same in my HTML page.

Please Help

Thanks,

Shibin

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

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

发布评论

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

评论(2

情绪操控生活 2024-08-31 05:32:45

尝试 iskip jquery 插件

try the iskip jquery plugin

人间不值得 2024-08-31 05:32:45

你有 JavaScript 经验吗?我确信你可以使用 JS 创建这种效果,但是我对 JS 还不太熟悉。对于一个非常简单的效果版本,您可以操纵 DOM 在鼠标悬停时更改图像,如下所示:

<a href="#" onMouseOver="document.my_image.src=new_image.gif;">
<img src="http://example.com/image.gif" name="my_image"/></a>

尝试在您的问题中添加一个 javascript 标签,也许更有经验的 JS 忍者将能够帮助您。

Do you have any JavaScript experience? I'm sure you can create that effect using JS, however I'm not super familiar with JS (yet). For a very simple version of the effect though, you can manipulate the DOM to change the image upon mouseover like so:

<a href="#" onMouseOver="document.my_image.src=new_image.gif;">
<img src="http://example.com/image.gif" name="my_image"/></a>

Try adding a javascript tag to your question, maybe then a more experienced JS ninja will be able to help you out.

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