与原始 swfobject 相比,使用 jquery SWF 插件有哪些优点和缺点

发布于 2024-08-25 07:45:39 字数 237 浏览 4 评论 0原文

我已经在现场使用 jquery 库了。

与原始 swfobject 相比,使用 jQuery SWFObject 插件有哪些优点和缺点

jQuery SWFObject 插件

http://jquery.thewikies.com /swfobject/

I'm alreadu using jquery library on site.

What are pros and cons to use jQuery SWFObject plugin over origional swfobject

jQuery SWFObject plugin

http://jquery.thewikies.com/swfobject/

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

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

发布评论

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

评论(3

素年丶 2024-09-01 07:45:39

它只是从混合中消除跨浏览器问题,它是一个抽象层。有时,在 Flash 电影上声明变量在浏览器之间略有不同...最好将其从等式中删除,就像您使用 jQuery 的 .height() 而不是弄清楚每个浏览器的作用一样你自己。

做一次,相信它有效,您不需要加载每个浏览器来测试所有变量每次都是正确的(尽管我并不是说这是一个坏主意)

It just removes cross-browser issues out of the mix, it's an abstraction layer. Sometimes declaring the variables right on flash movies are slightly different amongst browsers...better to remove this from the equation, just like you'd use jQuery's .height() instead of figuring out what each browser does yourself.

Do it once, trust that it works, you don't need to load up every browser to test to see that all the variables are right each time (though I'm not saying that's a bad idea).

眉目亦如画i 2024-09-01 07:45:39

jQuery SWFObject 插件 是 SWFObject 2.2 的端口,因此它应该提供相同的功能。一般来说:

如果你已经使用了 jQuery,jQuery 插件==会更方便。可能与常规 SWFObject 一样工作,因为它包含原始代码库。

独立的SWFObject ==经过更彻底的测试并拥有更广泛的用户基础。

The jQuery SWFObject plugin is a port of SWFObject 2.2, so it should offer the same functionality. In general:

jQuery plugin == more convenient if you already use jQuery. Probably works as well as regular SWFObject since it incorporates the original codebase.

Standalone SWFObject == more thoroughly tested and has wider user base.

-柠檬树下少年和吉他 2024-09-01 07:45:39

使用 jQuery 插件 与原始 SwfObject 库 意味着您只处理一个 javascript 库。所有语法都是 jQuery 语法,这真的很有趣。

另外,当你使用 jQuery 插件时,当你创建 swf 时,你会得到一个 swf 作为 jQuery 对象,你可以像这样进一步操作......

var swf = $('#putFlashHere').flash({
              swf: 'myFlash.swf',
              height: 400,
              width: 600
          });

swf.css({ 
  "margin" : "10em", 
  "border" : "solid 4px red"
});

The biggest benefit of using the jQuery plugin vs the original SwfObject library are that you are only dealing with one javascript library. All the syntax is jQuery syntax and that's really fun.

Additionally, when you use the jQuery plugin is that when you create the swf, you get a the swf back as a jQuery object which you can further manipulate like so...

var swf = $('#putFlashHere').flash({
              swf: 'myFlash.swf',
              height: 400,
              width: 600
          });

swf.css({ 
  "margin" : "10em", 
  "border" : "solid 4px red"
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文