去除 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;
}
相关文章