abstrait:<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>頁面中鼠標(biāo)移上圖片放大效果</title> <link rel="shortcut icon&qu
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>頁面中鼠標(biāo)移上圖片放大效果</title>
<link rel="shortcut icon" href="static/images/logo.png" type="image/x-icon" />
<style type="text/css">
.pic{width: 500px;margin: 150px auto;}
.pic img{
border-radius: 5px;
transition: all 0.5s;/*圖片放大過程的秒數(shù)*/
}
.pic:hover img{
transform:scale(1.5);
}
</style>
</head>
<body style="background:#ccc;">
<div class="pic">
<img src="static/images/1.jpg">
</div>
</body>
</html>
Professeur correcteur:韋小寶Temps de correction:2019-03-09 16:44:21
Résumé du professeur:寫的很不錯(cuò) 這種效果寫起來還是蠻有意思的吧 沒事多找點(diǎn)類似的案例去練習(xí)練習(xí)