链接:https://luvjia.github.io/react-gallery/
# 在终端执行以下命令安装环境依赖
npm install
# 安装成功后执行以下命令,即可在浏览器中打开
npm start
# build文件的编译,执行
npm run build
GitHub Page 需要使用相对路径,修改: 在yarn run build后该项目会生成一个build文件,但是点击其中的index.html文件打开后浏览器是空白页面。 解决办法:
去掉.gitignore文件中的/build,另外在在package.json配置文件中加一句:"homepage": "./",然后进行打包(yarn run build)
然后打包项目:
yarn run build
将 build
提交到 Git 仓库:
git add -A
git commit -m "release project"
git push origin master
推送到 GitHub Page:
git subtree push --prefix=build origin gh-pages
安装classnames依赖
yarn add classnames --save
使用方法
classNames('foo', 'bar'); // => 'foo bar'
classNames('foo', { bar: true }); // => 'foo bar'
classNames({ 'foo-bar': true }); // => 'foo-bar'
classNames({ 'foo-bar': false }); // => ''
classNames({ foo: true }, { bar: true }); // => 'foo bar'
classNames({ foo: true, bar: true }); // => 'foo bar'
如果不使用classnames库,需要这样处理动态类名
import React, { Component } from 'react';
class Button extends Component{
// ...
render () {
let btnClass = 'btn';
//根据点击的state来控制css
if (this.state.isPressed) btnClass += ' btn-pressed';
else if (this.state.isHovered) btnClass += ' btn-over';
return <button className={btnClass}>{this.props.label}</button>;
}
};
使用classnames库
import React, { Component } from 'react';
import classNames from 'classnames';
class Button extends Component{
// ...
render () {
const btnClass = classNames({
'btn': true,
'btn-pressed': this.state.isPressed,
'btn-over': !this.state.isPressed && this.state.isHovered
});
return <button className={btnClass}>{this.props.label}</button>;
}
};