0
スクロールで要素のクラスを追加する方法React js、スクロールでクラスを追加し、ページの上にある場合はそのクラスを削除します。スクロールで要素のクラスを追加する方法React js
import React from "react"
import { Link } from "react-router"
import { prefixLink } from "gatsby-helpers"
import Helmet from "react-helmet"
import { config } from "config"
module.exports = React.createClass({
propTypes() {
return {
children: React.PropTypes.any,
}
},
render() {
window.addEventListener('scroll', (event) => {
});
return (
<div>
<header className="header">
<div className="top-bar">
<span><a href="tel:6788272782">678-827-2782 </a></span>
<span><a href="mailto:[email protected]"> [email protected]</a></span>
<button>Login</button>
</div>
</header>
{this.props.children}
</div>
)
},
})
@Chase DeAnda – harry