Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在倾斜模式下用于新网站项目视频播放器。
例如在 30° 角(1/6 弧度)
是否可以使用 JS/HTML5 视频标签或者我必须使用 Flash 视频播放器?
如果我必须使用 Flash,您能推荐任何具有此功能的免费播放器吗?
谢谢
您可以使用 CSS 变换来旋转视频容器:
video{ -moz-transform:rotate(30deg); -webkit-transform:rotate(30deg); -o-transform:rotate(30deg); -ms-transform:rotate(30deg); }