首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >css实现简单的告警提示动画效果

css实现简单的告警提示动画效果

作者头像
王小婷
发布2018-05-31 15:05:59
2.5K0
发布2018-05-31 15:05:59
举报
文章被收录于专栏:编程微刊编程微刊

需求:css实现简单的告警提示动画效果,当接收到实时信息的时候,页面弹出告警信息的动画效果

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>css实现告警提示动画</title>
            <script src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
        
        <style>
            .container {
                width: 200px;
                height: 200px;
                border:1px  solid  #CCCCCC;
                position: absolute;
                left: 40%;
                top: 40%;
            }
            .delete{
            text-align: right;
            margin-right: 4px;
                
            }
            .type {
                text-align: center;
                
                
            }
            
            .ico {
             position: absolute;
                left: 20%;
                top: 29%;
                width: 120px;
                height: 120px;
                background: url(img/211.png) no-repeat center;
                background-size: 100%;
            }
            /*动画*/
            
            .ico {
                -webkit-animation: Tada 1s 2s both infinite;
                -moz-animation: Tada 1s 2s both infinite;
                -ms-animation: Tada 1s 2s both infinite;
                animation: Tada 1s 2s both infinite;
            }
            /*浏览器兼容性部分略过*/
            
            @keyframes Tada {
                0% {
                    transform: scale(1);
                    transform: scale(1)
                }
                10%,
                20% {
                    transform: scale(0.9) rotate(-3deg);
                    transform: scale(0.9) rotate(-3deg)
                }
                30%,
                50%,
                70%,
                90% {
                    transform: scale(1.1) rotate(3deg);
                    transform: scale(1.1) rotate(3deg)
                }
                40%,
                60%,
                80% {
                    transform: scale(1.1) rotate(-3deg);
                    transform: scale(1.1) rotate(-3deg)
                }
                100% {
                    transform: scale(1) rotate(0);
                    transform: scale(1) rotate(0)
                }
            }
        </style>
    </head>

    <body>
        <div class="container">
            <div  class="delete">
                <img  src="img/delete.png">
            </div>
            <div class="type">健康报警  
            
            </div>
            <div class="ico"></div>
        </div>
    </body>

<script>
       $(".delete").on("click",function(){
       $('.container').hide();
 });
</script>

</html>

效果如下:

图片.png

90后前端妹子,爱编程,爱运营,爱折腾。 坚持总结工作中遇到的技术问题,坚持记录工作中所所思所见,欢迎大家一起探讨交流。 原文作者:祈澈姑娘 原文链接:https://www.jianshu.com/u/05f416aefbe1

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018.04.21 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档