在页面周围拖放影片 div

发布于 2024-11-26 20:32:12 字数 146 浏览 2 评论 0原文

我需要重新设计一个依赖悬停效果的项目,非常好,但不适合客户。我的任务是能够选择图像并将其移动到屏幕中的某个区域(称为电影屏幕),然后让它们使用播放按钮等事件进行播放。

除了可能指出一些利用物体移动(例如电影文件而不是静态图像)的示例之外,我并不认真期望任何回应。

I need to rework a project that relied on hover effect, quite nice, but not appropriate for the client. My task is to be able to choose an image and move it to an area in the screen (call it a movie screen) and then to have them play with an event like a play button.

I don't seriously expect any response other than perhaps to be pointed to some examples that utilize the moving of an object such as a movie file rather than a static image.

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

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

发布评论

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

评论(1

眼角的笑意。 2024-12-03 20:32:12

我认为你应该看看 jQuery UI 拖放演示

一旦你设置好了,你就可以例如,一旦您将电影文件放入某个放置目标,就会触发可拖动图像 div 开始播放电影文件。

$( ".selector" ).droppable({ drop: function(event, ui) { <call javascript to play movie here> }});

I think you should look at jQuery UI drag and drop demos

Once you've set it up, you could trigger the draggable image div to start playing a movie file once you've dropped it into a certain drop target, for example.

$( ".selector" ).droppable({ drop: function(event, ui) { <call javascript to play movie here> }});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文