首页 前端知识 【css3】png图片实现动态动画

【css3】png图片实现动态动画

2024-08-08 22:08:20 前端知识 前端哥 22 745 我要收藏
.border_style {
            width: 400px;
            height: 400px;
            background-color: black;
            margin: auto;
        }

        @keyframes sprite-animation {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: 0 -2064px;
                /* 假设每个图像的宽度为100px */
            }
        }
        .wrj_box {
            width: 86px;
            height: 86px;
            background-image: url("./wurenji.png");
            animation: sprite-animation 1s steps(24) infinite;
            z-index: 2000;

        }
<div class="border_style">
        <div class="wrj_box"></div>
    </div>

在这里插入图片描述

转载请注明出处或者链接地址:https://www.qianduange.cn//article/15033.html
标签
评论
发布的文章

jQuery

2024-01-31 12:01:10

JQuery操作DOM

2024-04-13 23:04:28

jQuery入门(五)Ajax和json

2024-08-16 22:08:14

Aristo jQuery UI 主题教程

2024-08-16 22:08:14

常用js库和框架(echarts)

2024-08-16 22:08:08

ECharts基础配置详解

2024-08-16 22:08:07

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!