亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

我的照片墻摘錄

??? 2019-03-09 16:08:53 242
????:<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <title>頁面中鼠標移上圖片放大效果</title>    <link rel="shortcut icon&qu

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <title>頁面中鼠標移上圖片放大效果</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>


?? ???:韋小寶?? ??:2019-03-09 16:44:21
???? ??:寫的很不錯 這種效果寫起來還是蠻有意思的吧 沒事多找點類似的案例去練習練習

??? ??

?? ??