首页 > 其他分享 >mix-blend-mode

mix-blend-mode

时间:2024-05-06 20:25:19浏览次数:23  
标签:width height mix mode position blend

mix-blend-mode


<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      .box-wrap {
        position: relative;
        width: 80px;
        height: 80px;

        .box1,
        .box2 {
          position: absolute;
          inset: 0;
          width: 100%;
          height: 100%;
        }
        .box1 {
          background-color: rgba(255, 0, 0, 1);
        }
        .box2 {
          top: 20px;
          left: 20px;
          background-color: rgba(0, 0, 255, 1);
          mix-blend-mode: screen;
        }
      }

      .box2-wrap {
        position: relative;
        left: 120px;
        width: 200px;

        .bg,
        .video {
          position: absolute;
          inset: 0;
          width: 100%;
        }
        .video {
          mix-blend-mode: screen;
        }
      }

      .bg,
      .video,
      .canvas {
        width: 200px;
        height: auto;
        object-fit: contain;
        box-sizing: border-box;
      }
    </style>
  </head>
  <body>
    <div class="box-wrap">
      <div class="box1"></div>
      <div class="box2"></div>
    </div>
    <hr />
    <div class="box2-wrap">
      <img src="./school_overcast-s.jpg" alt="" class="bg" />
      <video src="./rains-s.mp4" controls autoplay loop muted class="video"></video>
    </div>
  </body>
</html>

标签:width,height,mix,mode,position,blend
From: https://www.cnblogs.com/chlai/p/18175797

相关文章

  • webcodecs mix-blend-mode
    WebCodecsmix-blend-mode:screen混合模式<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"/><metaname="viewport"content="width=device-width,initial-scale=1.0"/&g......
  • 关于diffusion model一些统计和数学的基础知识
    likelihood-basedmodels,通过(近似)最大似然直接学习分布的probabilitydensity(或mass)函数。典型的基于似然的模型包括自回归模型、归一化流模型、基于能量的模型(EBMs)和变分自编码器(VAEs)。概率质量函数(ProbabilityMassFunction,PMF):概率质量函数用于描述离散随机变量的概率......
  • REACT: SYNERGIZING REASONING AND ACTING IN LANGUAGE MODELS
    发表时间:2023(ICLR2023)文章要点:文章提出一个简单有效的ReAct框架,将reasoning和action结合,在交互式的环境上进行测试,取得了很好的效果。其中reasoning作为推理模块,帮助模型归纳,跟踪和更新动作规划,acting和环境交互收集更多信息(reasoningtraceshelpthemodelinduce,track,a......
  • Razavi - RF Microelectronics的笔记 - Current-Driven Passive Mixer
    Onpage367,whilediscussingaboutcurrent-drivenpassivemixer,thereisthissaying:theswitchesinFig.6.39(b)alsomixthebasebandwaveformswiththeLO,deliveringtheupconvertedvoltagestonodeA.Iamquiteconfusedonwheredoesthiswave......
  • LO Self Mixing
    Duetothenonlinearityof\(C_{GS1}\)and\(C_{GS2}\)arisingfromlargeLOamplitudes,\(V_P\)doeschangewithtimebutonlyattwicetheLOfrequency.Idon'tquiteunderstandwheredoesthis"twice"comefrom.ThenIcheckProbl......
  • C. Mixing Water
    https://codeforces.com/contest/1359/problem/C题意:给h和c两个数,并且操作顺序必须是hchchchch...对这些操作求和后除以操作次数得到均值,要求这个均值尽可能的接近t。问在最接近t的情况下,最少需要进行多少次操作。思路:如果(h+c)/2>=t,那么则只需两次操作最优。如果h==t,......
  • 【MMD x EEVEE教程】工具篇 • blender设置
    这篇教程适合有一定基础的萌新....*&blender下载官方网址https://www.blender.org/官方blender,都是最新版,如果需要找旧版的blender可以到这里来https://download.blender.org/release/,里边包好了所有版本的blender,因为是做MMD,下载自己需要版本后,建议额外下载一个2.93版的,某些时......
  • "基础模型时代的机器人技术" —— Robotics in the Era of Foundation Models
    翻译:2023年是智能机器人规模化的重要一年!对于机器人领域之外的人来说,要传达事物变化的速度和程度是有些棘手的。与仅仅12个月前的情况相比,如今人工智能+机器人领域的大部分景观似乎完全不可识别。从学术界到初创公司再到工业研究实验室,2023年带来了一波研究进展,迫使许多人更新了......
  • 【Modelsim问题】# ** Error: (vsim-3170) Could not find 'lab1_tb'.
     #**Error:(vsim-3170)Couldnotfind'lab1_tb'. testbench文件名与其中module 后紧跟的名称不匹配......
  • Qt-Model/View综合示例
    相关类简介Qt和Model/View模式相关的类比较多,但一般存在继承关系,按model(模型),view(视图),delegate(委托)划分为如下几种:类型类名简介父类modelQAbstractItemModel(抽象类)常用的Model的基类QObjectQStandardItemModel通用model可以实现以下任意类型......