欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

鼠标悬停效果

程序员文章站 2024-03-04 08:23:17
...

鼠标悬停,点击效果

鼠标悬停效果
鼠标悬停效果


<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style>
            button{
                border: 0;
            }
            img{
                margin: 50%;
            }
        </style>
        <script>
            function changeColor( str){
                document.getElementById("color").style.backgroundColor=str;
            }
            //笑
            function myOver(){
                document.getElementById("tp").src="img/haha.gif";

            }
            //哭
            function myOut(){
                document.getElementById("tp").src="img/cry.jpg";

            }

        </script>
    </head>
    <body id="color">
        <button onclick="changeColor('pink')">粉色</button>
        <button onclick="changeColor('orange')">橙色</button>
        <button onclick="changeColor('grey')">灰色</button>
        <button onclick="changeColor('lightgreen')">豆绿色</button>

        <div  onmouseover="myOver()" onmouseout="myOut()" style="float: left;">
            <img id="tp" src="img/cry.jpg" />
        </div>

    </body>
</html>
相关标签: 鼠标