CSS 动画分享

发布于 2023-07-31 06:43:20 字数 957 浏览 34 评论 0

闪烁效果,可用于消息提醒,红点闪烁:

.notice {
    display: inline-block;
    background: #e14346;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    box-shadow: 2px 2px 3px rgba(135, 17, 20, 0.3);
    animation: 1.6s cubic-bezier(.65,.05,.36,1) 0s infinite alternate flashing;
}

@keyframes flashing {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

Ease out 可用于按钮移入移除的效果:

.button {
    border: 2px solid #e14346;
    padding: 6px 40px;
    background: none;
    font-size: 1.2rem;
    font-weight: bold;
    color: #e14346;
    transition-property: background, color;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}

.button:hover {
    border: 2px solid #e14346;
    padding: 6px 40px;
    background: #e14346;
    font-size: 1.2rem;
    color: #fff;
    transition-property: background, color;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

断念

暂无简介

0 文章
0 评论
22 人气
更多

推荐作者

马化腾

文章 0 评论 0

thousandcents

文章 0 评论 0

辰『辰』

文章 0 评论 0

ailin001

文章 0 评论 0

冷情妓

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文