自动调整嵌入代码大小

发布于 2024-08-26 06:11:59 字数 184 浏览 4 评论 0原文

嘿,我只是想知道我可以使用什么代码来在显示之前自动更改嵌入视频的大小。

例如,我需要让它找到这个

width="any value" height="any value"

的所有实例,并将它们替换为这个

width="540" height= “405”

Hey, I'm just wondering what code I could use to auto change the size of the video being embedded before it gets displayed.

Example, I need to have it find all instances of this

width="any value" height="any value"

and replace them with this

width="540" height="405"

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

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

发布评论

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

评论(2

少钕鈤記 2024-09-02 06:11:59

您究竟如何嵌入视频?有一些 JavaScript 库,例如 swfobjectjQuery Media 允许您在页面加载时设置 Flash 对象的高度/宽度。

或者,您可以使用一点 jQuery 来更改高度/宽度属性。

$('object').attr('height', 405);
$('object').attr('width', 540);

How exactly are you embedding the video? There are javascript libraries such as swfobject or jQuery Media that allow you to set the height/width of a flash object when the page loads.

Alternatively you could use a little bit of jQuery to alter the height/width attributes after the fact.

$('object').attr('height', 405);
$('object').attr('width', 540);
萌︼了一个春 2024-09-02 06:11:59

或者你可以将它们包装在一个公共 div 中。将其分类为 .videoWrap 之类的内容

,然后您可以简单地将其样式设置为:

.videoWrap object, .videoWrap embed{
    width:540px;
    height:405px;
}

Or you could just wrap them in a common div. Class it with something like .videoWrap

then you could simply style it as:

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