<!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