opacity对图片的用法,想让图片有一种灰色的感觉就可以使用opacity
<!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>
<style>
img{
opacity: 0.7;
}
img:hover{
opacity: 1;
}
</style>
</head>
<body>
<img src="./img/Tencent腾讯天天P图.png" alt="">
</body>
</html>