本文介绍了是否可以让< video>镜像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以让内部标签中的视频水平或垂直镜像?
Is that possible to make a video inside tag mirrored horizontally or vertically?
推荐答案
您可以使用CSS3 3D转换。
You can do it using a CSS3 3D transformation.
#videoElement
{
transform: rotateY(180deg);
-webkit-transform:rotateY(180deg); /* Safari and Chrome */
-moz-transform:rotateY(180deg); /* Firefox */
}
这将围绕Y轴旋转180度
This will rotate it 180 degrees around its Y axis (so you're now looking at it from behind) which gives the same appearance as being mirrored.
这篇关于是否可以让< video>镜像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!