正如此帖的标题已经说明的,如何根据Fullpage.js?
中的当前部分更改页面标题答案 0 :(得分:5)
Fullpage.js有一个事件onLeave。
onLeave: function(index, nextIndex, direction){
switch(nextIndex) {
case 1:
document.title = "Index";
break;
//etc
}
},
也许这样的事情会发生