20. Mouse out transition effect

Effect (the source code network disk address is at the end)


Pay attention to the public account "Moving the World" to see more video tutorials!

source code

index.html

<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">
  <title> CSS 鼠标移出过渡效果</title>
  <meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" href="./style.css">

</head>
<body>

<h1>靠近我呀</h1>
  
</body>
</html>

css

h1::before {  
  transform: scaleX(0);
  transform-origin: bottom right;
}

h1:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

h1::before {
  content: " ";

Guess you like

Origin blog.csdn.net/qq449245884/article/details/122749254