中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

html中點擊圖片放大怎么實現

清風
13192
2021-03-26 19:00:06
欄目: 編程語言

html中點擊圖片放大的實現方法:1.創建一個html文件;2.在html文件中添加html代碼架構;3.在body標簽里面使用img標簽添加一張圖片以及使用script標簽添加函數實現鼠標點擊圖片放大的效果;4.通過瀏覽器方式查看設置效果。

html中點擊圖片放大怎么實現

html中點擊圖片放大的實現方法:

1.首先創建一個html文件。

2.在html文件中添加html代碼架構。

<!DOCTYPE html>

<html>

    <head>

        <title>圖片放大</title>

    </head>

    <body>

    </body>

</html>

3.然后在html代碼架構中的body標簽里面使用img標簽添加一張圖片以及使用script標簽添加一個函數實現鼠標點擊圖片放大的效果。

<div style=" width:300px; height:300px;margin-left:auto; 

        margin-right:auto; overflow:hidden; margin-top:100px;">       

        <img id="img" onmouseover="bigger()" onmouseout="smaller()"         

        src="http://mat1.gtimg.com/www/images/qq2012/guanjia2.png"         

        style="cursor:pointer;width:300px;height:300px;      

        transition:all 1s ease-out 0s; perspective-origin:bottom;"/>      

        <script type="text/javascript">       

        var img = document.getElementById('img');        

        function bigger(){        

        img.style.width = '400px';        

        img.style.height = '400px';        

        img.style.marginTop = "-50px";        

        img.style.marginLeft = "-50px";        

        }        

        function smaller(){

        img.style.width = '300px';        

        img.style.height = '300px';        

        img.style.marginTop = "0px";        

        img.style.marginLeft = "0px"; 

        }       

        </script>

4.最后可通過瀏覽器方式閱讀html文件查看設計效果。

完整示例代碼如下:

<!DOCTYPE html>

<html>

    <head>

        <title>圖片放大</title>

    </head>

    <body>

        <div style=" width:300px; height:300px;margin-left:auto; 

        margin-right:auto; overflow:hidden; margin-top:100px;">

        <img id="img" onmouseover="bigger()" onmouseout="smaller()" 

        src="http://mat1.gtimg.com/www/images/qq2012/guanjia2.png" 

        style="cursor:pointer;width:300px;height:300px; 

        transition:all 1s ease-out 0s; perspective-origin:bottom;"/>

        <script type="text/javascript">

        var img = document.getElementById('img');

        function bigger(){

        img.style.width = '400px';

        img.style.height = '400px';

        img.style.marginTop = "-50px";

        img.style.marginLeft = "-50px";

        }

        function smaller(){

        img.style.width = '300px';

        img.style.height = '300px';

        img.style.marginTop = "0px";

        img.style.marginLeft = "0px";

        }

        </script>

    </body>

</html>

0
屯门区| 临洮县| 青冈县| 红河县| 布尔津县| 四子王旗| 泾川县| 北海市| 门源| 启东市| 阿勒泰市| 琼海市| 冕宁县| 尤溪县| 莱州市| 兴文县| 大厂| 荣成市| 桂平市| 马尔康县| 华安县| 张家界市| 金门县| 喀什市| 体育| 牡丹江市| 阿坝| 临沧市| 益阳市| 南阳市| 龙井市| 宜阳县| 牙克石市| 东城区| 远安县| 德惠市| 仲巴县| 新安县| 瓦房店市| 龙陵县| 长葛市|