我正在这里练习一些React。我希望我的const request = require('request');
request('https://www.wikipedia.org', function (error, response, body) {
if (error) throw error
console.log(body);
});
在完成某个滚动点之后获得一个NavBar
,但是当我滚动回到顶部时,backgroundColor
不会变回无。我在这里先向您的帮助表示感谢。
backgroundColor
答案 0 :(得分:1)
none
对backgroundColor
无效。
改为尝试const top = {backgroundColor: 'transparent'}
。