鹿泽鹿泽  2024-06-14 11:48:56 鹿泽笔记 隐藏边栏  2 

网站有时候可能会用到滚动字幕来吸引访客的注意:

CSS代码

/*滚动字幕*/
@media screen and (max-width: 500px) {
    body .scroll-notice-animate {
        animation: 30s wordsLoop linear infinite normal;
                }
            }
.scroll-notice {
    background:#0aa7e4;
    color:#fff;
    white-space:nowrap;
    overflow:hidden;
}
.scroll-notice a {
    color:#fff;
}
.scroll-notice-animate {
    padding-left:20px;
    animation:35s wordsLoop linear infinite normal;
}
.scroll-notice-animate:hover {
    animation-play-state:paused;
}
@keyframes wordsLoop {
    0% {
    transform:translateX(100%);
}
100% {
    transform:translateX(-100%);
}
/*滚动字幕*/

滚动文本

在head,或任意需要的地方加入如下代码。

<div class="scroll-notice">
        <div class="scroll-notice-animate">欢迎来到鹿泽笔记,有任何问题请联系我!</div>
</div>

文字可修改需要展示的内容。

1、文章版权归作者所有,未经允许请勿转载。
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505