我是靠谱客的博主 细腻薯片,最近开发中收集的这篇文章主要介绍鼠标动作捕获与响应,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

鼠标动作捕获与响应界面图如几个图所示

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

<!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>鼠标事件</title>
    <style>
        .global{
            width: 400px;
            height: 400px;
            background: chartreuse;
            text-align: center;
            margin: 0 auto;
            margin-top: 10px;
            padding: 10px;
        }
        img{
            margin-top: 20px;
            
        }
        input{
            height: 30px;
            width: 200px;
        }
        hr{
            color: white;
        }
    </style>
    <script>
        function $(id){
            return document.getElementById(id);
        }
        function mouseOver(){
            $("image").src="img/image21.jpg";
            $("input-text").value="鼠标在图上";
            $("global").style.background="green";
          
        }
        function mouseOut(){
            $("image").src="img/image22.jpg";
            $("input-text").value="鼠标不在图上";
            $("global").style.background="blue";
        }
        function Click(){
            $("image").src="img/image23.jpg";
            $("input-text").value="鼠标单击";
            $("global").style.background="yellow";  
        }
        function dblclick(){
            $("image").src="img/image24.jpg";
            $("input-text").value="鼠标双击";
            $("global").style.background="orange";  
        }
    </script>
</head>
<body>
    <div class="global" id="global" onmouseover="mouseOver()" onmouseout="mouseOut()" ondblclick="dblclick()" onclick="Click()">
        <h1> 鼠标动件捕获与响应</h1>
        <hr>
        <input type="text" id="input-text">
        <img src="img/image21.jpg" alt="" id="image" >
    </div>
</body>
</html>

最后

以上就是细腻薯片为你收集整理的鼠标动作捕获与响应的全部内容,希望文章能够帮你解决鼠标动作捕获与响应所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部