当前位置: 代码网 > it编程>编程语言>Javascript > React如何实现视频旋转缩放

React如何实现视频旋转缩放

2024年11月25日 Javascript 我要评论
一、背景原本我们预览视频仅仅是简单的video标签实现就可以满足业务的需求了,但是某一天,产品说:”业务的视频是用手机拍的,方向不一定是正的,还有视频的宽高太小了看不清,所以希望我们能让视

一、背景

原本我们预览视频仅仅是简单的video标签实现就可以满足业务的需求了,但是某一天,产品说:”业务的视频是用手机拍的,方向不一定是正的,还有视频的宽高太小了看不清,所以希望我们能让视频做到旋转跳跃(不是)旋转+按比例缩小放大“。不过吐槽归吐槽,既然需求合理该做还是得做啊。

二、实现

这个功能初时看起来很头疼,在细细思考下来后发现,实现思路其实并不复杂,可以通过transform去辗转腾挪,最终完成我们想要的效果。

1. 原始效果

我们最初始的效果就是如同图片预览一般,点击弹窗播放视频,所以这里仅仅使用了video标签。

2. 还原原生video控制栏功能

如果我们直接去旋转video标签,那么他的控制栏也会跟着旋转,这并不符合我们的期望,所以我们需要在video标签外加一层容器,然后自定义控制栏和viode同级,做到只旋转video标签。

但是这里我嫌自定义控制栏太麻烦,于是这里选择了一个自带ui的三方视频组件进行改造。这里采用的是vime,有兴趣了解的可以去vimejs.com/。最终是展示这个样子

3. 旋转

以上前置工作做完之后,接下来就进入正题,添加我们的旋转功能。利用transform对video进行旋转,同时宽高数值对换。由于vime中video标签设置了position: absolute,所以这里我们还要调整初始的topleft

import { player, video, defaultui, settings, menuitem } from '@vime/react';

// 初始宽度
const init_width = 370;
// 初始高度
const init_height = 658;

const demo = ({ src }) => {
  const [visible, setvisible] = usestate(false);
  // vime组件宽高比例
  const [aspectratio, setaspectratio] = usestate('9:16');
  // 容器宽度,vime组件会根据容器宽高自适应
  const [width, setwidth] = usestate<string | number>(init_width);
  // 旋转角度
  const degref = useref(0);

  useeffect(() => {
    if (src) {
      setvisible(true);
    } else {
      setvisible(false);
    }
  }, [src]);

  const closevideopreview = () => {
    setvisible(false);
  };

  const onrotate = () => {
    const videoel: htmlvideoelement | null = document.queryselector('.sc-vm-file');
    if (!videoel) return;
    const vwidth = init_width;
    const vheight = init_height;
    const deg = degref.current < 270 ? degref.current + 90 : 0;
    // 旋转后样式
    let newratio = '16:9';
    let newwidth = vheight;
    let reswidth = `${vwidth}px`;
    let resheight = `${vheight}px`;
    let top = (vwidth - vheight) / 2;
    let left = (vheight - vwidth) / 2;
    // 水平角度复原处理
    if (deg === 0 || deg === 180) {
      newwidth = init_width;
      newratio = '9:16';
      reswidth = '100%';
      resheight = '100%';
      top = 0;
      left = 0;
    }

    videoel.style.width = reswidth;
    videoel.style.height = resheight;
    videoel.style.transform = `rotate(${deg}deg)`;
    videoel.style.top = `${top}px`;
    videoel.style.left = `${left}px`;
    setwidth(newwidth);
    setaspectratio(newratio);
  };

  return (
    <>
      {visible ? (
        <div classname='video-preview'>
          <div classname='video-preview-mask' onclick={() => closevideopreview()} />
          <div classname="video-preview-content" onclick={() => closevideopreview()}>
            <div
              classname="video-preview-box"
              style={{ width }}
              onclick={(event) => {
                event.stoppropagation();
              }}
            >
              <player
                icons="custom"
                aspectratio={aspectratio}
              >
                <video>
                  <source data-src={src} />
                </video>

                <defaultui nocontrols>
                  // 。。。
                  <settings active={openmenu}>
                    <menuitem label="旋转" onclick={onrotate} />
                  </settings>
                </defaultui>
              </player>
            </div>
          </div>
        </div>
      ) : null}
    </>
  );
};

此时就能实现以下效果:

4. 全屏

上面虽然已经实现了旋转效果,但是并没有结束,当我们点击全屏功能之后,此时旋转的样式,就变得奇怪了

这是由于我们先前写死了宽高数值,导致旋转后video宽高没有适应全屏,将全屏的宽高设置为100vh跟100vw即可兼容全屏状态下的旋转。

const player = useref<htmlvmplayerelement>(null);

const changestyle = (deg: number) => {
  const videoel: htmlvideoelement | null = document.queryselector('.sc-vm-file');
  if (!videoel) return;
  // 获取窗口的宽度
  const screenwidth = window.innerwidth;
  // 获取整个屏幕的高度
  const screenfullheight = screen.height;
  const vwidth = init_width;
  const vheight = init_height;
  // 旋转后样式
  // ...
  // 当全屏旋转90/270度时,宽高处理
  if (player.current?.isfullscreenactive) {
    newwidth = 'auto';
    reswidth = '100vh';
    resheight = '100vw';
    top = (screenfullheight - screenwidth) / 2;
    left = (screenwidth - screenfullheight) / 2;
  }
  // ...
};

// 旋转
const onrotate = () => {
  setopenmenu(false);
  const newdeg = degref.current < 270 ? degref.current + 90 : 0;
  degref.current = newdeg;
  changestyle(newdeg);
};

// 全屏
const onvmfullscreenchange = () => {
  if (degref.current === 90 || degref.current === 270) {
    changestyle(degref.current);
  }
};

return (
  ...
  <player
    ref={player}
    aspectratio={aspectratio}
    onvmfullscreenchange={onvmfullscreenchange}
  >
      ...
  </player>
)

全屏+旋转 效果展示

5. 比例缩放

走到这里,旋转功能原本已经完成,但是不要忘记还有一个缩小放大功能,从全屏旋转的例子来看,缩放功能也会影响到旋转效果,还要对旋转再做兼容处理。

我们先实现缩放功能:

// 比例
const [scale, setscale] = usestate('1');

// 比例缩放
const changescale = (event: event) => {
  const radio = event.target as htmlvmmenuradioelement;
  const scaleval = number(radio.value);
  setscale(radio.value);
  setopenmenu(false);
  const videoel: htmlvideoelement | null = document.queryselector('.sc-vm-file');
  if (!videoel) return;
  // 宽高 * 选中比例
  const vwidth = init_width * scaleval;
  const vheight = init_height * scaleval;
  // 视频设置新宽高
  videoel.style.width = `${vwidth}px`;
  videoel.style.height = `${vheight}px`;
  setwidth(vwidth);
};

return (
  ...
    <submenu label="缩放比例" hint={scale}>
      <menuradiogroup value={scale} onvmcheck={changescale}>
        <menuradio label="1" value="1" />
        <menuradio label="1.2" value="1.2" />
        <menuradio label="1.4" value="1.4" />
        <menuradio label="1.6" value="1.6" />
        <menuradio label="1.8" value="1.8" />
        <menuradio label="2" value="2" />
      </menuradiogroup>
    </submenu>
  ...
)

我们在缩放时改变了宽高,但是旋转使用的依然是初始宽高,那么在缩放之后旋转,会变回初始大小,而旋转后再缩放,则会导致样式错误。所以,我们在缩放和旋转方法中需要拿到上一次变换过的样式,再进行新的变换。

const scaleref = useref(1);

const changestyle = (deg: number) => {
  const videoel: htmlvideoelement | null = document.queryselector('.sc-vm-file');
  if (!videoel) return;
  // 获取窗口的宽度
  const screenwidth = window.innerwidth;
  // 获取整个屏幕的高度
  const screenfullheight = screen.height;
  const vwidth = init_width * scaleref.current;
  const vheight = init_height * scaleref.current;
  // 旋转后样式
  // ...
  // 水平角度处理
  if (deg === 0 || deg === 180) {
    newwidth = init_width * scaleref.current;
    // ...
  }
  // ...
};

// 比例缩放
const changescale = (event: event) => {
  const radio = event.target as htmlvmmenuradioelement;
  scaleref.current = number(radio.value);
  setscale(radio.value);
  changestyle(degref.current);
};

最终效果展示

三、总结

实现视频的旋转缩放功能实际上并不复杂,主要还是通过调整css样式做到我们想要的效果。我们在业务中遇到这种“没做过,看起来很麻烦”的问题时,始终应该还是抱着“只有你想不到,没有我做不到”的态度,只要深入思考一下或者动手尝试一下,大概就会发出“哦,原来这么简单”的感叹。有道是:山重水复疑无路,柳暗花明又一村。

到此这篇关于react如何实现视频旋转缩放的文章就介绍到这了,更多相关react视频旋转缩放内容请搜索代码网以前的文章或继续浏览下面的相关文章希望大家以后多多支持代码网!

(0)

相关文章:

版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。

发表评论

验证码:
Copyright © 2017-2025  代码网 保留所有权利. 粤ICP备2024248653号
站长QQ:2386932994 | 联系邮箱:2386932994@qq.com