【JAVA】CSS定位与CSS3属性、渐变、CSS3字体、2D变换

1 定位

1.1 相对定位

相对定位没有脱离文档流

定位元素的显示层级比普通元素高

定位元素可以通过margin,float调整位置,但不推荐

包含块:父元素

left和right同时写,右失效

上下同时写,下失效

<head>
        <style>
         *{
                margin: 0;
                padding:0;
         }
         .outer{
                width: 500px;
                border:1px solid black;
                background-color: chocolate;
                padding: 20px;
         }
         .box{
                width: 80px;
                height: 80px;
         }
         .box1{
                background-color: aqua;
         }
         .box2{
                background-color: brown;
                position: relative;
                /* 正值离left多少距离 */
                left:100px;
                bottom:100px;
         }
         .box3{
                background-color: yellowgreen;
         }
        </style>
</head>
<body>
        <div class="outer">
                <div class="box box1"></div>
                <div class="box box2"></div>
                <div class="box box3"></div>
        </div>
</body>

 在box2中加入:

float: left;

 1.2 绝对定位

绝对定位脱离文档流

绝对定位+浮动:浮动失效

绝对定位+margin:可以但不推荐

包含块:第一个拥有定位的祖先元素,没有就是页面元素

子绝父相:这样父亲就可以管理儿子

子元素想在宽度上和父元素对齐,定位后left:0,right:0,全铺满,top:0,bottom:0

 <style>
      .outer{
        width: 500px;
        background-color: aqua;
        border: 1px solid red;
        padding: 20px;
        position:relative;
      }
      .box{
        width: 200px;
        height: 100px;
        font-size: 20px;
      }
      .box1{
        background-color: blue;
      }
      .box2{
        background-color: rgb(110, 238, 6);
        /* 绝对定位脱离文档流,与浮动不同,浮动是文字环绕图片或文字环绕文字,浮动会把3 t出来 */
        position:absolute;
      }
      .box3{
        background-color: rgb(248, 17, 232);
      }
      /* 鼠标碰到盒子,box2盒子往右移动显示出box3 */
      .outer:hover .box2{
        left:220px;
      }
        </style>
</head>     
<body>
       <div class="outer">
        <!-- 对box1,box3,outer是包含块 -->
        <!-- 对box2,如果outer的css里面有position:relative;那么outer是包含块,否则html是包含块 -->
        <div class="box box1">1</div>
        <div class="box box2">2</div>
        <div class="box box3">3</div>

       </div>
</body>

1.3 固定定位

参考点:视口(红色框内部分)

position:fixed;

 1.4 粘性定位

参考点:第一个有滚动机制的祖先元素

不脱离文档流

粘性定位+浮动:可以但不推荐

粘性定位+margin:可以但不推荐

<!DOCTYPE html>

<html lang="en">
<head>
        <style>
        *{
        margin: 0;
        padding: 0;
      }
      .page-header{
        height: 100px;
        background-color: orange;
        text-align: center;
        line-height: 100px;
      }
      .item{
        background-color: #ccc;
      }
      .first,.second,.third{
        background-color: skyblue;
        position: sticky;
        /* 参考点:离它最近的能滚动的祖先元素 */
        /* 此处是content的div */
        top: 0px;
      }
      .body{
        height: 2000px;
      }
      .content{
        height: 200px;
        overflow: scroll;
      }
        </style>
</head>
<body>
        <div class="page-header">头部</div>
        <div class="content">
          <div class="item">
            <div class="first">Aa      </div> 
              <h1>a1</h1>
              <h1>a2</h1>
              <h1>a3</h1>
              <h1>a4</h1>
              <h1>a5</h1>
              <h1>a6</h1>
              <h1>a7</h1>
              <h1>a8</h1>
            </div>
            <div class="item">
            <div class="first">Ab   </div>     
              <h1>b1</h1>
              <h1>b2</h1>
              <h1>b3</h1>
              <h1>b4</h1>
              <h1>b5</h1>
              <h1>b6</h1>
              <h1>b7</h1>
              <h1>b8</h1>
            </div>
              <div class="item">
            <div class="first">Ac        </div>   
              <h1>c1</h1>
              <h1>c2</h1>
              <h1>c3</h1>
              <h1>c4</h1>
              <h1>c5</h1>
              <h1>c6</h1>
              <h1>c7</h1>
              <h1>c8</h1>
            </div>
          </div>
      
</body>

</html> 

效果: 划完一个item内容蓝条换下一个

 1.5 定位层级

//通过z-index调整该块的定位层级
z-index:n;

同级定位,后来者居上

CSS3

2 浏览器私有前缀

Can I use... Support tables for HTML5, CSS3, etc查浏览器能不能支持css3和h5新特性

Chrome、Edge、Safari浏览器内核:-webkit-

eg:-webkit-border-radius:20px

3 长度单位

rem:根元素字体大小倍数

10vm:视口宽度的10%

10vh:视口高度的10%

4 盒子属性

4.1 怪异盒模型

<head>
        <style>
        .box1{
          width: 200px;
          height: 200px;
          padding: 100px;
          background-color: aqua;
        }
        .box2{
          width: 200px;
          height: 200px;
          padding: 100px;
          box-sizing: border-box;
          background-color: brown;
        }
        </style>
</head>
<body>
        <div class="box1"></div>
        <div class="box2"></div>
</body>

4.2 resize

<head>
        <style>
        .box1{
          width: 200px;
          height: 200px;
          padding: 100px;
          background-color: aqua;
          /* 水平方向上可以调,也可垂直方向:vertical */
          resize: horizontal;
          /* resize属性起作用必须有overflow */
          overflow: hidden;
        }
        </style>
</head>
<body>
        <div class="box1"></div>
</body>

  

4.3 box-shadow 

        <style>
        .box1{
          width: 200px;
          height: 200px;
          background-color: aqua;
          margin: 200px;
          /* 阴影1,水平|垂直 
          box-shadow:10px 10px; */
          /* 阴影2 
          box-shadow: 20px 20px red; */
          /* 阴影3 ,5px为模糊程度
          box-shadow: 20px 20px 5px red; */
          /* 阴影4
          box-shadow: 20px 20px 5px; */
          /* 阴影5 100px为外延值 
           box-shadow: 20px 20px 5px 100px red ; */
           /* 阴影6,inset为内阴影
           box-shadow: 20px 20px 5px 100px red inset; */
           position: relative;
           top: 0;
           left: 0;
           transition: 1s linear all;
        }
          .box1:hover{
            box-shadow: 20px 20px 5px  red ;
            top: -1px;
            left: 0;
          }
        </style>
</head>
<body>
        <div class="box1"></div>
</body>

4.4 opacity

<head>
        <style>
        .box2{
          position: relative;
          width: 150px;
        }
        span{
          /* 把文字放到图片上面 */
          position: absolute;
          /* 左上角 */
          top: 0;
          left: 0;
          color: red;
          width: 100%;
          background-color: white;
          opacity: 0.5;
        }
        .box2 img{
          width: 150px;
          height: 150px;

        }
        </style>
</head>
<body>
        <diV class="box2">
          <img src="./image/favicon.ico">
          <span>彭于晏</span>
        </diV>
</body>

5 背景属性

5.1 background-origin

5.2 background-clip

<head>
        <style>
        .box1{
          width: 500px;
          height: 500px;
          background-color: aqua;
          background-image: url('./image/landscape.png');
          font-size: 100px;
          background-clip: text;
          /* background-clip: text;生效必需条件 */
          color:transparent
        }
        
        
        </style>
</head>
<body>
        <div class="box1">盒子测试</div>
</body>

 

<head>
        <style>
        .box1{
          width: 500px;
          height: 500px;
          background-color: aqua;
          padding: 50px;
          background-image: url('./image/landscape.png');
          font-size: 100px;
          /* 只留下content内容区的图片 */
          background-clip:content-box;
          border:5px dotted red;
        }
        </style>
</head>
<body>
        <div class="box1">盒子测试</div>
</body>

5.3 background-size

<head>
        <style>
        .box1{
          width: 500px;
          height: 500px;
          background-color: aqua;
          background-image: url('./image/landscape.png');
          /* 1.background-size: 400px 400px; */
          /* 2.background-size: 100% 100%;参考父辈的宽高 */
          /* 3.background-size: auto;默认 */
          background-repeat: no-repeat;
          /* contain为等比缩放,让图片的宽或高与容器的宽或高相等,可能不能铺满 */
          background-size:contain;
          /* 全铺满 
          background-size:cover; */
        }
        </style>
</head>
<body>
        <div class="box1"></div>
</body>

5.3 复合属性

应用:多背景图

<head>
        <style>
        .box1{
          width: 500px;
          height: 500px;
          border: 2px red solid;
          background:url('./123.gif') no-repeat ,
          url('./favicon.ico') no-repeat right top;
        }
        </style>
</head>
<body>
        <div class="box1"></div>
</body>

6 边框属性

6.1 边框圆角 

/* 宽或高的50% */
          border-radius: 20%;
          /* 圆角,半径为30px */
          border-radius: 30px;

 6.2 边框外轮廓

 /* 边框外轮廓 */
          outline-offset: 5px;
          outline-color: blue;
          outline-width: 20px;
          outline-style: dotted;

7 文本属性

7.1 文本阴影

<head>
        <style>
        h1{
          text-shadow: 50px 50px red;
          font-size: 100px;
          color: rgb(104, 247, 9);
        }
        </style>
</head>

        <h1>你学废了么</h1>
</body>

7.2 文本换行

<head>
        <style>
        h1{
          width:400px;
          height: 400px;
          border: 1px red solid;
          /* white-space: pre;按原文显示 */
          white-space: pre-wrap;
          /* white-space: pre-line;与white-space: pre-wrap;作用相同,但忽略文章前后的空格 */
          /* white-space: nowrap;不换行 */
        }
        </style>
</head>
<h1>路上只我一个人,背着手踱着。这一片天地好像是我的;我也像超出了平常旳自己,到了另一世界里。我爱热闹,也爱冷静;爱群居,也爱独处。像今晚上,一个人在这苍茫旳月下,什么都可以想,什么都可以不想,便觉是个自由的人。白天里一定要做的事,一定要说的话,现在都可不理。这是独处的妙处,我且受用这无边的荷香月色好了。 </h1>
</body>

 7.3 文本溢出

在7.2代码中加入

overflow: hidden;
          /* text-overflow生效,overflow不能为visible */
          text-overflow:ellipsis;

text-overflow:clip

7.4 文本修饰

<head>
        <style>
        h1{
          width:420px;
          height: 400px;
          text-decoration: dashed  overline;
          text-decoration-color: greenyellow;
          
        }
        </style>
</head>
<body>
  <h1>路上只我一个人,背着手踱着。</h1>
</body>

 

 7.5 文本描边

<head>
        <style>
        h1{
          font-size: 100px;
          -webkit-text-stroke:  rgb(246, 154, 6) 10px;
          color: transparent;
        }
        </style>
</head>
<body>
  <h1>路上只我一个人,背着手踱着。</h1>
</body>

8 渐变

<!DOCTYPE html>

<html lang="en">
<head>
        <style>
        .box{
          width: 300px;
          height: 200px;
          border: 1px solid black ;
          float: left;
          margin-right: 50px;
        }
        /* box1-box5线性渐变 */
        .box1{
          background-image: linear-gradient(red,yellow,green);
        }
        .box2{
          background-image: linear-gradient(to top right,red,yellow,green);
        }
        .box3{
          /* 逆时针20° */
          background-image: linear-gradient(20deg,red,yellow,green);
        }
        .box4{
          /* height: 200px;,0-50px纯红,50-100px变黄,100px-150px变绿 */
          background-image: linear-gradient(red 50px,yellow 100px,green 150px);
        }
        .box5{
          background-image: linear-gradient(red 50px,yellow 100px,green 150px);
          font-size: 80px;
          text-align: center;
          line-height: 200px;
          color: transparent;
          background-clip: text;
        }
        /* box6-box10 是径向渐变 */
        .box6{
          /* 从圆心(盒子中心点)开始,向外是红色黄色绿色 */
          background-image: radial-gradient(red,yellow,green);
        }
        .box7{
          /* 圆心在右上角 */
          background-image: radial-gradient(at right top,red,yellow,green);
        }
        .box8{
          /* 200px是横向的 */
          background-image: radial-gradient(at 200px 50px,red,yellow,green);
        }
        .box9{
          /* 10px是半径,从圆心向外算距离,10px以内都是红色 */
          background-image: radial-gradient(red 10px,yellow 100px,green 200px);
        }
        .box10{
          /* 150px 50px表示长半径,短半径,椭圆 */
          background-image: radial-gradient(150px 50px at 200px 50px,red,yellow,green);
        }
        .box11{
          /* 重复渐变:在没有发生渐变的区域,重新开始渐变 */
          /* 参考box4 */
          background-image: repeating-linear-gradient(red 50px,yellow 100px,green 150px);
        }
        .box12{
          background-image:  repeating-radial-gradient(red 10px,yellow 100px,green 200px);;
        }
        .box13{
          background-image: repeating-linear-gradient(transparent 0,transparent 29px,gray 30px);
        }
        .box14{
          width: 200px;
          height: 200px;
          border-radius: 50%;
          background-image:radial-gradient(at 80px 80px,white,gray);
        }

        </style>
</head>
<body>
  <div class="box box1"></div>
  <div class="box box2"></div>
  <div class="box box3"></div>
  <div class="box box4"></div>
  <div class="box box5">你学废了么</div>
  <div class="box box6"></div>
  <div class="box box7"></div>
  <div class="box box8"></div>
  <div class="box box9"></div>
  <div class="box box10"></div>
  <div class="box box11"></div>
  <div class="box box12"></div>
  <div class="box box13"></div>
  <div class="box box14"></div>
</body>
</html> 

 9 字体

9.1 web字体

在网上下载一个字体,导入代码文件夹中

<head>
        <style>
        @font-face{
          font-family: "这是什么字体";
          src: url('./font1/HeFengShuDaoZhaoHeFeiLongTi-Shan\(GEETYPE-FeilongGBT-Flash\)-2.ttf');
        }
        h1{
          font-size: 100px;
          font-family: "这是什么字体"; 
        }
        </style>
</head>
<body>
  <h1>沿着荷塘,是一条曲折的小煤屑路。</h1>

缺点;字体占用空间大

iconfont-webfont平台

将下列文件放入代码font文件夹: 

打开demo.html

将@font-face{}复制到style标签中

更改url,路径前加font文件夹路径

<head>
        <style>
        @font-face{
          font-family: "这是什么字体";
          src: url('./font1/HeFengShuDaoZhaoHeFeiLongTi-Shan\(GEETYPE-FeilongGBT-Flash\)-2.ttf');
        }
       /* 高兼容性写法 */
        @font-face {
    font-family:"webfont123";
    font-display: swap;
    src: url('./font2/webfont.eot'); /* IE9 */
    src: url('./font2/webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('./font2/webfont.woff2') format('woff2'),
    url('./font2/webfont.woff') format('woff'), /* chrome、firefox */
    url('./font2/webfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
    url('./font2/webfont.svg#webfont') format('svg'); /* iOS 4.1- */
}
        h1{
          font-size: 100px;
          font-family: "这是什么字体"; 
        }
        h2{
          font-family: "webfont123";
          font-size: 100px;
        }
        h3{
          font-size: 100px;
        }
        </style>
</head>
<body>
  <h1>沿着荷塘,是一条曲折的小煤屑路。</h1>
  <h2>执子之手,将子拖走!子若不走,拍晕了继续拖走!</h2>
  <h3>执子之手,将子拖走!子若不走,拍晕了继续拖走!</h3>
</body>

 

9.2 字体图标 

iconfont-阿里巴巴矢量图标库点击icon

10 2D变换

10.1 位移

<head>
        <style>
       .outer{
        width: 200px;
        height: 200px;
        border: 2px black solid;
        margin: 0 auto;
        margin-top: 200px;
        position: relative;
       }
       .inner{
        width: 60px;
        height: 60px;
        background-color: aqua;
        /* 50%是自身width的50% */
         /* 水平位移 
        transform: translateX(50%); */
        /* /垂直位移 
        transform: translateY(50%); */
        /* 只有后者transform: translateY(50%); 有效果
        transform: translateX(50%);
        transform: translateY(50%);  */
        /* 水平+垂直位移 
        transform: translate(20px,20px); */
        position: absolute;
        /* 此时50%相对于父元素的50% */
        top:50%;
        left:50%;
        /* 基于上面代码垂直居中法一:
        margin-left: 30px;
        margin-top: 30px; */
        /* 位移百分比说的是自己 */
        /* 基于上面代码垂直居中法二 */
        transform:translate(-50%,-50%)
       }
        </style>
</head>
<body>
  <div class="outer">
    <div class="inner"></div>
  </div>
</body>

 10.2 缩放

/* ()中数值>1放大,<1缩小,1表示不缩放 */
        transform: scale();
        transform: scaleX();
        transform: scaleY();

10.3 旋转

/* 2D旋转,30deg顺时针旋转30° */
        /* transform: rotate(30deg)写一个值相当于transform: rotateZ(30deg) */
        transform: rotate(30deg)

10.4 多重变换

基本代码:

<head>
        <style>
       .outer{
        width: 200px;
        height: 200px;
        border: 2px black solid;
        margin: 0 auto;
        margin-top: 200px;
       }
       .inner{
        width: 200px;
        height: 200px;
        background-color: aqua;
       }
        </style>
</head>
<body>
  <div class="outer">
    <div class="inner"></div>
  </div>
</body>

inner{}中添加:

transform: translate(100px,100px) scale(0.5);

transform: scale(0.5) translate(200px,200px) ;

可以理解为缩放0.5,位移也减少0.5倍,实际移动的是100px 

 transform: translate(100px,100px) rotate(30deg);

transform: rotate(30deg) translate(100px,100px) ;

坐标系发生变化 

10.5 改变旋转原点 

 /* 旋转原点在左上角 */
        transform-origin: left top;
        /* 离盒子左上角各50px */
        transform-origin:50px 50px;
        /* 25%指的是父元素宽高的25% */
        transform-origin:25% 25%;
        /* 原点只在左上角x轴变化50px */
        transform-origin:50px;
        /* 绕盒子左边中点转 */
        transform-origin:left;
        /* 改变原点对位移没有影响,对放缩有影响 */
        transform-origin: left top;
        /* 原点在左上,原点不动,缩小放大以对角线形式靠近或远离原点 */
        transform:scale();

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/446912.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

从零学习Linux操作系统 第三十四部分 Ansible中的执行流控制

一、ansible中的迭代循环 循环迭代任务# 1、简单循环# loop: ##赋值列表 – value1 – value2 – … {{item}} 迭代变量名称 2、循环散列或字典列表 二、Ansible中的条件语句 when: 条件1条件2 条件判断 ‘’value “字符串”,value 数字‘<’value < 数字‘>…

【基础计算机网络2】物理层——通信基础

【前言回顾】 【考纲内容】 一、物理层的基本概念 1.1 物理层的主要任务 物理层解决如何在连接各种计算机的传输媒体上传输数据比特流&#xff0c;而不是指具体的传输媒介。物理层的主要任务&#xff1a;确定与传输媒体接口有关的一些特性。 1.2 物理层的一些特性 机械特性…

C++变参模板

从c11开始&#xff0c;模板可以接受一组数量可变的参数&#xff0c;这种技术称为变参模板。 变参模板 下面一个例子&#xff0c;通过变参模板打印一组数量和类型都不确定的参数。 #include <iostream> #include <string>void print(void) {std::cout<<&quo…

【最新版】ChatGPT/GPT4科研应用与AI绘图论文写作(最新增加Claude3、Gemini、Sora、GPTs技术及AI领域中的集中大模型的最新技术)

2023年随着OpenAI开发者大会的召开&#xff0c;最重磅更新当属GPTs&#xff0c;多模态API&#xff0c;未来自定义专属的GPT。微软创始人比尔盖茨称ChatGPT的出现有着重大历史意义&#xff0c;不亚于互联网和个人电脑的问世。360创始人周鸿祎认为未来各行各业如果不能搭上这班车…

关于playbook中when条件过滤报The conditional check ‘result|failed‘ failed的问题

问题现象 在使用plabook中的when做过滤脚本如下&#xff1a; --- - hosts: realserversremote_user: roottasks:- name: Check if httpd service is runningcommand: systemctl status httpdregister: resultignore_errors: True- name: Handle failed service checkdebug:ms…

docker常用操作-docker私有仓库的搭建(Harbor),并将本地镜像推送至远程仓库中。

1、docker-compose安装&#xff0c;下载docker-compose的最新版本 第一步&#xff1a;创建docker-compose空白存放文件vi /usr/local/bin/docker-compose 第二步&#xff1a;使用curl命令在线下载&#xff0c;并制定写入路径 curl -L "https://github.com/docker/compos…

基于Spring Boot + Vue的电影购票系统

基于Spring Boot Vue的电影购票系统 功能介绍 分为用户端和商家端&#xff0c;商家端只能让拥有商家角色的人登录 商家可以在系统上面注册自己家的影院信息选择影院进去管理&#xff0c;在选择完要进行操作的影院后&#xff0c;可以在系统的电影库选择电影为当前的影院进行电…

Docker容器Docker桌面配置镜像加速

打开Docker Desktop应用程序&#xff0c;点击设置 具体配置如下&#xff1a; {"builder": {"gc": {"defaultKeepStorage": "20GB","enabled": true}},"experimental": false,"features": {"buil…

VScode(Python)使用ssh远程开发(Linux系统树莓派)时,配置falke8和yapf总结避坑!最详细,一步到位!

写在前面&#xff1a;在Windows系统下使用VScode时可以很舒服的使用flake8和yapf&#xff0c;但是在ssh远程开发树莓派时&#xff0c;我却用不了&#xff0c;总是出现问题。当时我就开始了漫长的探索求知之路。中间也请教过许多大佬&#xff0c;但是他们就讲“能用不就行了&…

Windows10/11配置WSL(Ubuntu)环境

文章目录 WSL介绍WSL部署扩展&#xff1a;辅助工具Windosw Terminal安装下载 WSL介绍 传统方式获取Linux操作系统&#xff0c;是安装完整的虚拟机及镜像环境&#xff0c;例如虚拟机VMware 而使用WSL,可以以非常轻量化的方式&#xff0c;得到Linux系统环境 它无需单独虚拟一套硬…

PaddlePaddle----基于paddlehub的OCR识别

Paddlehub介绍 PaddleHub是一个基于PaddlePaddle深度学习框架开发的预训练模型库和工具集&#xff0c;提供了丰富的功能和模型&#xff0c;包括但不限于以下几种&#xff1a; 1.文本相关功能&#xff1a;包括文本分类、情感分析、文本生成、文本相似度计算等预训练模型和工具。…

计算机设计大赛 行人重识别(person reid) - 机器视觉 深度学习 opencv python

文章目录 0 前言1 技术背景2 技术介绍3 重识别技术实现3.1 数据集3.2 Person REID3.2.1 算法原理3.2.2 算法流程图 4 实现效果5 部分代码6 最后 0 前言 &#x1f525; 优质竞赛项目系列&#xff0c;今天要分享的是 &#x1f6a9; 深度学习行人重识别(person reid)系统 该项目…

【C语言基础】:深入理解指针(终篇)

文章目录 深入理解指针一、函数指针变量4.1 函数指针变量的创建4.2 函数指针变量的使用4.3 typedef关键字 二、函数指针数组三、转移表四、回调函数4.1 什么是回调函数4.2 qsort使用举例4.2.1 使用qsort函数排序整形数据4.2.2 使用qsort排序结构数据4.2.3 qsort函数的模拟实现 …

WPF(1)的MVVM的数据驱动学习示例

MVVM Model:数据模型、View 界面、ViewModel 业务逻辑处理 项目结构 界面数据绑定 <Window x:Class"WpfApp1.MainWindow"xmlns"http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x"http://schemas.microsoft.com/winfx/2006/x…

Timus#1005

C【动态规划】 #include<iostream> #include<vector> using namespace std; int main() {int n;cin >> n;vector<int> dp(100000 * 20);vector<int> a(n);int ans 0, cur 0;for (int i 0; i < n; i){cin >> a[i];ans a[i];}int sum…

虚拟主播视频制作,低成本的数字人播报方案

传统的视频制作方式往往面临着成本高、周期长、人力投入大等挑战。为了满足企业对于高效、低成本视频制作的需求&#xff0c;美摄科技凭借其强大的技术研发实力&#xff0c;推出了面向企业的虚拟主播视频解决方案&#xff0c;为企业带来了全新的数字人播报视频制作体验。 美摄…

备考2025年AMC8数学竞赛:吃透2000-2024年600道AMC8真题就够

我们继续来随机看五道AMC8的真题和解析&#xff0c;根据实践经验&#xff0c;对于想了解或者加AMC8美国数学竞赛的孩子来说&#xff0c;吃透AMC8历年真题是备考最科学、最有效的方法之一。 即使不参加AMC8竞赛&#xff0c;吃透了历年真题600道和背后的知识体系&#xff0c;那么…

Linux学习——锁

目录 ​编辑 一&#xff0c;锁的概念 二&#xff0c;锁的操作 1&#xff0c;锁类型 pthread_mutex_t 2&#xff0c;初始化锁 3&#xff0c;上锁 4&#xff0c;解锁 5&#xff0c;销毁锁 三&#xff0c;线程安全问题演示 四&#xff0c;锁的原理 五&#xff0c;死锁 …

《IAB视频广告标准:综合指南(2022)》之概述篇 - 我为什么要翻译介绍美国人工智能科技公司IAB 系列(2)

IAB平台&#xff0c;使命和功能 IAB成立于1996年&#xff0c;总部位于纽约市。 作为美国的人工智能科技巨头社会媒体和营销专业平台公司&#xff0c;互动广告局&#xff08;IAB- the Interactive Advertising Bureau&#xff09;自1996年成立以来&#xff0c;先后为700多家媒体…

每日一练:LeeCode-56、合并区间【数组+滑动窗口】

4.合并区间 LeeCode-56、合并区间 以数组 intervals 表示若干个区间的集合&#xff0c;其中单个区间为 intervals[i] [starti, endi] 。请你合并所有重叠的区间&#xff0c;并返回 一个不重叠的区间数组&#xff0c;该数组需恰好覆盖输入中的所有区间 。 1 < intervals.le…