自动调整嵌入代码大小
嘿,我只是想知道我可以使用什么代码来在显示之前自动更改嵌入视频的大小。
例如,我需要让它找到这个
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您究竟如何嵌入视频?有一些 JavaScript 库,例如 swfobject 或 jQuery Media 允许您在页面加载时设置 Flash 对象的高度/宽度。
或者,您可以使用一点 jQuery 来更改高度/宽度属性。
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.
或者你可以将它们包装在一个公共 div 中。将其分类为
.videoWrap
之类的内容,然后您可以简单地将其样式设置为:
Or you could just wrap them in a common div. Class it with something like
.videoWrap
then you could simply style it as: