直播网站源码,背景色渐变

直播网站源码,背景色渐变

实现页面从白色背景过度到蓝色

 


var t = d3.transition()
    .duration(2000);
d3.select("body").transition(t).style("background-color", "lightblue");
const colors = ['red', 'yellow', 'blue']
let j = 0
function* _sf(i) {
    while(j < i) {
      let color = colors[j % 3]
      let t = d3.transition()
          .duration(2000)
      d3.select('body').transition(t).style("background-color", color);
      j += 1
      yield
    }
}
const a = _sf(1000)
setInterval(() => {
    a.next()
}, 2000)

以上就是 直播网站源码,背景色渐变,更多内容欢迎关注之后的文章

 

posted @ 2023-06-30 14:05  云豹科技-苏凌霄  阅读(27)  评论(0编辑  收藏  举报