本文介绍了去除 youtube 缩略图上的黑色边框 4:3的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
例如我有链接
http://img.youtube.com/vi/aOPGepdbfpo/0.jpg
对于 youtube 视频缩略图:
for a youtube video thumbnail:
我想删除黑色的顶部和底部边框,所以我得到这样的图片:
And I would like to remove the black top and bottom border so I get a picture like this:
是否可以使用 PHP 函数 javascript/jQuery 或 youtube api 本身来完成?
Could it be done using PHP function javascript/jQuery or maybe youtube api itself?
推荐答案
将其用作背景图片,居中并更改高度.
Use it as a background image, center it and change height.
http://dabblet.com/gist/4012604
.youtubePreview {
background:url('http://img.youtube.com/vi/aOPGepdbfpo/0.jpg') center no-repeat;
height:204px;
width:480px;
}
这篇关于去除 youtube 缩略图上的黑色边框 4:3的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!