使用 Jquery 使 swf 文件成为链接

发布于 2024-09-25 08:45:58 字数 295 浏览 4 评论 0原文

我收到了一个需要链接到 URL 的横幅的 swf 文件。我正在将其添加到我客户的网站,并且我的客户已收到要添加到页面的 swf 和 javascript。问题是 javascript 代码过于复杂,我想使用 Jquery 和 Unobtrusive Flash Objects(我还没有更新到此站点上的 swfobject)。我可以使用 Jquery 和/或 UFO(或者如果我必须升级的话,实际上是 swfobject)使 swf 文件链接到外部 url(最好在新选项卡/窗口中加载)?我对 ActionScript 或 Flash 没有任何了解。对此有任何帮助将不胜感激!

I've been sent a swf file for a banner that needs to be linked to a url. I am adding this to my client's website and my client has been sent the swf and javascript to add to the page. The problem is that the javascript code is overly complex, and I'm wanting to use Jquery and Unobtrusive Flash Objects (I've not yet updated to swfobject on this site). Can I use Jquery and/or UFO (or indeed swfobject if I have to upgrade) to make the swf file link to an external url (preferably loading in a new tab/window)? I don't have any knowledge of actionscript or flash. Any help on this would be appreciated!

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

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

发布评论

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

评论(1

浮光之海 2024-10-02 08:45:58

您需要使用动作脚本在 Flash 文件内创建链接。

做到这一点非常简单,请查看此处的答案

或者,类似的方法也可能有效。基本上是位于 Flash 横幅上方的透明锚标记。

var $flash = $("#id-of-flash-object tag").
var $flashLink = $("<a />")
    .attr("href", "http://www.google.co.nz")
    .css({
        'position': 'absolute',
        'width': $flash.width(),
        'height': $flash.height(),
        'top': $flash.offset().top,
        'left': $flash.offset().left
    });
$("body").append($flashLink);

您可能需要将对象标记的 wmode 更改为“透明”。

(尚未测试)

You need to create a link inside the Flash file, using Action Script.

It's pretty easy to do this, check out the answer here.

Alternatively, something like this might work. Basically a transparent anchor tag that is position over the flash banner.

var $flash = $("#id-of-flash-object tag").
var $flashLink = $("<a />")
    .attr("href", "http://www.google.co.nz")
    .css({
        'position': 'absolute',
        'width': $flash.width(),
        'height': $flash.height(),
        'top': $flash.offset().top,
        'left': $flash.offset().left
    });
$("body").append($flashLink);

You might need to change the wmode of the object tag to "transparent".

(this hasn't been tested)

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