使用transform对html的video播放器窗口放大

核心是使用

复制代码
<div class="video" style="width: 100%; height:700px;">播放容器</div>


$('video').css({
            'transform': 'scale(2)',
            'transform-origin': 'center top'
        });

其中

scale 表示放大倍数,可以是小数

transform-origin 表示位置,

1)可以使用坐标点 如 '120px 200px'

2)或者使用方位坐标,left right top bottom总共九个 ,如

左上方 'left top'

上方 'top center'

右上方 'right top'

左方 'left center'

中间 'center center'

右方 'right center'

左下方 'right bottom'

下方 'bottom center'

右下方 'right bottom'

以下是html示例代码

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Video Scaling and Positioning</title>

<style>

.video-container {

position: relative;

width: 100%; /* 容器宽度 */

height: 100vh; /* 容器高度 */

overflow: hidden; /* 超出部分隐藏 */

}

video {

position: absolute;

top: 50%; /* 垂直居中 */

left: 50%; /* 水平居中 */

transform: translate(-50%, -50%) scale(1); /* 初始缩放为1,居中 */

transition: transform 0.5s ease; /* 增加缩放时的平滑过渡效果 */

}

/* 当鼠标悬停时,缩放并调整位置 */

video:hover {

transform: translate(-30%, -30%) scale(1.5); /* 缩放到1.5倍并移动位置 */

}

</style>

</head>

<body>

<div class="video-container">

<video src="video.mp4" controls></video>

</div>

</body>

</html>

相关推荐
计算机毕设定制辅导-无忧学长4 小时前
HTML 性能优化之路:学习进度与优化策略(二)
学习·性能优化·html
小旋风012344 小时前
封装可拖动弹窗(vue jquery引入到html的版本)
vue.js·html·jquery
前端Hardy8 小时前
HTML&CSS:超丝滑的动态导航菜单
javascript·css·html
前端Hardy8 小时前
HTML&CSS:你绝对没见过的input输入框,确定不看看吗
javascript·css·html
前端Hardy8 小时前
HTML&CSS:不一样的开关效果
javascript·css·html
木木黄木木10 小时前
HTML5手写签名板项目实战教程
前端·html·html5
爱上大树的小猪12 小时前
【前端安全】模板字符串动态拼接HTML的防XSS完全指南
前端·安全·html
懒大王952716 小时前
echarts+HTML 绘制3d地图,加载散点+散点点击事件
前端·html·echarts
Yolo@~1 天前
个人网站:基于html、css、js网页开发界面
javascript·css·html
DarkBule_1 天前
零基础驯服GitHub Pages
css·学习·html·github·html5·web