在html中更改页面标题

时间:2017-04-12 11:03:17

标签: jquery html css

我希望我的网站标题在页面滚动到图1的底部后,图2发生了变化。我该怎么写代码?请帮忙

enter image description here

1 个答案:

答案 0 :(得分:-2)

试试这个

$(window).scroll(function(){
  var sticky = $('.sticky'),
      scroll = $(window).scrollTop();

  if (scroll >= 100) sticky.addClass('fixed');
  else sticky.removeClass('fixed');
});