JavaScript 实现标题滚动效果

Posted 乱舞春秋__

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 实现标题滚动效果相关的知识,希望对你有一定的参考价值。

javascript 实现标题滚动效果

实现步骤

  • 定义需要滚动的标题字符串
    let title = 'Nothing is impossible for a willing mind'
  • 定义实现标题滚动的函数
    function titleChange () {
      const keywords = title.split('') // 将标题转为字符串数组
      const firstChar = keywords.shift() // 取出标题中第一个字符
      keywords.push(firstChar)
      title = keywords.join('')
      document.title = title
    }
  • 开启定时器
    setInterval(fn, delay)

完整代码

    let title = 'Nothing is impossible for a willing mind'
    function titleChange () {
      const keywords = title.split('')
      const firstChar = keywords.shift()
      keywords.push(firstChar)
      title = keywords.join('')
      document.title = title
    }
    setInterval(titleChange, 500)

以上是关于JavaScript 实现标题滚动效果的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript 实现标题滚动效果

炫酷 CSS 背景效果的 10 个代码片段

javascript 标题滚动js片段

使用原生javascript实现网页中banner滚动切换效果

几条jQuery代码片段助力Web开发效率提升

JQuery实现文字无缝滚动效果 Marquee插件