首页 > 解决方案 > 在 three.js 上覆盖视频提要

问题描述

我正在使用以下代码在three.js 之上覆盖视频提要。

<style>
  body {
    margin: 0;
    overflow: hidden;
  }
  
  #canvas {
    width: 100%;
    height: 100%;
    padding: 0px;
    position: static;
    /* fixed or static */
  }
</style>

<body>

  <img src="{{ url_for('video_feed') }}" style="width: 20%;height: 20%;">

  <div id="canvas"></div>

  <script src="{{ url_for('static', filename='js/main.js') }}"></script>

</body>

如何在画布的右上角覆盖 img 标签?

标签: javascripthtmlcssstylesheet

解决方案


推荐阅读