开发者

How to make video thumbnails like Facebook [CSS]

开发者 https://www.devze.com 2023-01-14 01:03 出处:网络
I am looking to make video thumbnails like on facebook but I am not able to get that play button over the thumbnail like on facebook.

I am looking to make video thumbnails like on facebook but I am not able to get that play button over the thumbnail like on facebook.

How to make video thumbnails like Facebook [CSS]

CODE

HTML

<a href="watch-video.php?c=1244">
    <img src="http://img.youtube.com/vi/X0OdLlX-cIw/1.jpg">
    <b></b>
</a>

CSS

.wall_video a {display: block; width: 128px; height: 96px; padding: 4px; border: 1px solid #cccccc; position: relative}
.wall_video a img {display: block; width: 128px; height: 96px; }
.wall_video开发者_如何学运维 a b {background: url(images/play-icon.png) no-repeat; display: block; width: 28px; height: 30px; position: absolute;}

When I try to float the img then the button goes right on top. At first I thought its position:relative and negative top margin but when I checked the source of facebook they dont use relative positioning.


.wall_video a b {
    /* ... */
    position: absolute;
    left: 5px;
    bottom: 5px;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消