去除 youtube 缩略图上的黑色边框 4:3

Removing black borders 4:3 on youtube thumbnails(去除 youtube 缩略图上的黑色边框 4:3)
本文介绍了去除 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Add products thumbnail to Woocommerce admin orders list(将产品缩略图添加到WooCommerce管理订单列表)
Display thumbnailPhoto from Active Directory in PHP(在 PHP 中显示 Active Directory 中的缩略图)
Display thumbnailPhoto from Active Directory in PHP(在 PHP 中显示来自 Active Directory 的缩略图照片)
Generate thumbnail for text file(为文本文件生成缩略图)
FFMpeg - Creating Thumbnail for Video file(FFMpeg - 为视频文件创建缩略图)
How to render a Youtube thumbnail in a template in Drupal 7(如何在 Drupal 7 的模板中渲染 Youtube 缩略图)