我是靠谱客的博主 安详彩虹,最近开发中收集的这篇文章主要介绍css和js实现鼠标移入移出触发动画,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<!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>Document</title>
    <style>
        #button{
            width: 200px;
            height: 50px;
            background-color: aliceblue;
            position: absolute;
            top: 100px;
            left: 100px;
        }
        h1{
            position: absolute;
            top: -35%;
            left: 22%;
        }
        .action{
            animation-name: example;
            animation-duration: 0.5s;
            animation-fill-mode: forwards;
        }
        @keyframes example{
            from{background-color: aliceblue;}
            to{background-color: brown;}
        }
    </style>
</head>
<body>
    <div id="button"><h1>button</h1></div>
    <script type="text/javascript">
        var button = document.getElementById("button");
        button.onmouseenter=function(){
            button.setAttribute("class","action");
        }
        button.onmouseleave=function(){
            button.removeAttribute("class");
        }
        //第二种方式
        // document.getElementById("button").addEventListener('mouseenter' , function(){
        //     alert(2);
        // });
        button.onclick=function(){
            alert("ok");
        }
    </script>
</body>
</html>

最后

以上就是安详彩虹为你收集整理的css和js实现鼠标移入移出触发动画的全部内容,希望文章能够帮你解决css和js实现鼠标移入移出触发动画所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部