返回介绍

circular

发布于 2023-08-19 19:14:40 字数 2132 浏览 0 评论 0 收藏 0

circular-2elements

circular-2elements

<style>
    @keyframes spin {
        to {
            transform: rotate(1turn);
        }

    }

    .avatar {
        animation: spin 6s infinite linear;
        transform-origin: 50% 150px; /* 150px = the radius of path */
    }

    .avatar > img {
        animation: inherit;
        animation-direction: reverse;
    }

    /*below is just styling*/
    .avatar {
        width: 48px;
        margin: 0 auto;
        border-radius: 50%;
        overflow: hidden;
    }

    .avatar > img {
        display: block;
        width: inherit;
    }

    .path {
        width: 300px;
        height: 300px;
        padding: 20px;
        border-radius: 50%;
        background: yellow;
    }

</style>
<body>
<div class="path">
    <div class="avatar">
        <img src="52-circular/wdpm.jpg"/>
    </div>
</div>
</body>

circular

<style>

    @keyframes spin {
        from {
            transform: rotate(0turn) translateY(-150px) translateY(50%) rotate(1turn)
        }
        to {
            transform: rotate(1turn) translateY(-150px) translateY(50%) rotate(0turn);
        }
    }

    .avatar {
        animation: spin 6s infinite linear;
    }

    /* Anything below this is just styling */

    .path {
        width: 300px;
        height: 300px;
        padding: 20px;
        margin: 100px auto;
        border-radius: 50%;
        background: #fb3;
    }

    .avatar {
        display: block;
        width: 50px;
        margin: calc(50% - 25px) auto 0;
        border-radius: 50%;
        overflow: hidden;
    }

    .avatar > img {
        width: inherit;
    }

</style>
<body>
<div class="path">
    <div class="avatar">
        <img src="52-circular/wdpm.jpg"/>
    </div>
</div>
</body>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文