首页 > 其他分享 >CSS文字擦除效果

CSS文字擦除效果

时间:2024-09-14 10:04:46浏览次数:1  
标签:文字 ordering medical order -- parents 擦除 milk CSS

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<body> 
  <div class="container">
    <p> 
      Some parents have publicly reported that a homeroom teacher at Laohekou Fourth Middle School in Xiangyang City, Hubei Province, posted a notice in the group chat stating that medical certificates are required for not ordering milk. The chat screenshot shows that the group notified that "schools with milk allergies require medical certificates", and parents also uploaded screenshots of milk ordering and payment. A parent of a first-year student at the school told reporters that at the beginning of the new semester, they were required to order milk for 330 yuan per semester. The homeroom teacher also issued a notice stating that unless the child is allergic to milk and has a medical certificate, they can refuse to order milk. Speaking of this, it is clearly a mandatory requirement to order milk, which is very repulsive. The staff of the Education Bureau of Laohekou City stated that ordering milk is based on voluntary principles and is never mandatory. They will verify and understand the situation with parents.
    </p>
    <p class="eraser">
      <span> 
        Some parents have publicly reported that a homeroom teacher at Laohekou Fourth Middle School in Xiangyang City, Hubei Province, posted a notice in the group chat stating that medical certificates are required for not ordering milk. The chat screenshot shows that the group notified that "schools with milk allergies require medical certificates", and parents also uploaded screenshots of milk ordering and payment. A parent of a first-year student at the school told reporters that at the beginning of the new semester, they were required to order milk for 330 yuan per semester. The homeroom teacher also issued a notice stating that unless the child is allergic to milk and has a medical certificate, they can refuse to order milk. Speaking of this, it is clearly a mandatory requirement to order milk, which is very repulsive. The staff of the Education Bureau of Laohekou City stated that ordering milk is based on voluntary principles and is never mandatory. They will verify and understand the situation with parents.
      </span>
    </p>
  </div>
</body>
<style>
  *{
    margin: 0;
    padding: 0;
  }
  body{
    background: #000;
    color: #fff;
  }
  .container{
    width: 500px;
    margin: 100px auto;
    position: relative; 
    overflow: hidden;
  } 
  p{
    text-indent: 2em;
  }
  .eraser{
    position: absolute;
    top: 1px; 
  }
  @property --p {
    syntax: "<percentage>";
    initial-value: 0%;
    inherits: false;
  }
  .eraser span{ 
    --p:0%; 
    color: transparent;
    background: linear-gradient(to right, #0000 var(--p), #000 calc(0px + var(--p)));
    animation:erase 5s forwards;
  }
 @keyframes erase{
    to{
      --p: 100%;
    }
  }
</style>
</html>

  

标签:文字,ordering,medical,order,--,parents,擦除,milk,CSS
From: https://www.cnblogs.com/daifuchao/p/18413392

相关文章

  • 通过注释一行代码 开启关闭一个div的css样式 - 开发调试技巧
    通过注释一行代码开启关闭一个div的css样式-开发调试技巧需求:开发的时候,我需要对页面的某个样式反复开关,但是html不能通过注释来开关,所以可以在div的上面加一个js但是vue的template里面不能加script,需要加component重点代码不写v-bindvscode有红色波浪<componentv-bind:......
  • 【CSS in Depth 2 精译_030】5.2 Grid 网格布局中的网格结构剖析(下)
    当前内容所在位置(可进入专栏查看其他译好的章节内容)第一章层叠、优先级与继承(已完结)1.1层叠1.2继承1.3特殊值1.4简写属性1.5CSS渐进式增强技术1.6本章小结第二章相对单位(已完结)2.1相对单位的威力2.2em与rem2.3告别像素思维2.4视口的相对单位2.5......
  • CSS基本布局理解——WEB开发系列38
    对CSS学习已经接近尾声,下面你可以对以下两道“小卡拉米”测试进行测试下CSS理解程度。题1:基于栅格布局的现代博客首页设计题目要求:创建一个博客首页布局,包含一个顶部导航栏、一个主要的内容区域(左侧为博客文章列表,右侧为一个侧边栏显示推荐内容),以及一个底部的页脚。要求......
  • 【油猴脚本】00003案例 Tampermonkey油猴脚本引入css 库,油猴脚本css库的使用
    前言:哈喽,大家好,今天给大家分享html+css绚丽Loading!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦......
  • 【漏洞复现】NUUO网络视频录像机 css_parser.php 任意文件读取
            NUUO网络视频录像机(NetworkVideoRecorder,简称NVR)是NUUOInc.生产的一种专业视频监控设备,它广泛应用于零售、交通、教育、政府和银行等多个领域。能够同时管理多个IP摄像头,实现视频录制、存储、回放及远程监控等功能。它采用先进的视频处理技术,提供高清、流畅......
  • tsx css class样式如何使用
    参考代码import{defineComponent,PropType,h,computed,ref,watch}from'vue';importtype{Reactive,Ref}from'vue';importstylesfrom'../scss/child.module.scss';import'../scss/child.scss';//这引入的样式是全局的,会影响其......
  • VS2022中文字符输出为乱码的解决
    一、问题vs2022输出中文时,出现乱码现象二、解决方案 把文件的字符编码格式改为utf-8格式选择工具,点击自定义选择命令,点击添加命令 选择文件,点击高级保存选项,然后点击确定 点击高级保存选项 选择utf-8编码格式,然后点击确定 三、问题解决 ......
  • vue2 + scss 全局引入 变量使用
    百度以及时AI帮助说的配置方式都大差不差,但是我的总是报错,意思就是变量找不到,报错如下Foraguideandrecipesonhowtoconfigure/customizethisproject,<br> 然后AI和文章写的vue.config.js的配置内容基本如下module.exports={css:{loaderOp......
  • css滚动条隐藏但是可以滚动
            要实现滚动条隐藏但仍然可以滚动的效果,可以使用CSS来隐藏滚动条,同时允许鼠标的滚轮或触摸板滚动。 /*隐藏滚动条,但仍可滚动*/.scrollable{overflow:auto;/*保持内容可滚动*/scrollbar-width:none;/*对于现代浏览器,隐藏滚动条*/}/*针......
  • CSS 响应式设计(补充)——WEB开发系列36
    随着移动设备的普及,网页设计的焦点逐渐转向了响应式设计。响应式设计不仅要求网页在各种屏幕尺寸上良好展示,还要适应不同设备的特性。1.响应式设计之前的灵活布局在响应式设计流行之前,网页布局通常是固定的或流动的。固定布局使用固定的像素宽度,而流动布局使用相对单位(如百分比)来......