如何在(Ant-design)中更改步骤颜色

时间:2018-11-23 12:06:53

标签: javascript reactjs react-native ant-design-pro

我是Ant设计的新手。目前,我正在从事ReactJs项目,并且在项目中使用了Steps。我想更改Steps的颜色,但不知道怎么可能。我将分享蚂蚁设计(Steps)代码。请帮帮我
谢谢

您可能会在this codesandbox中看到Steps的示例

代码

import React from 'react';
import ReactDOM from 'react-dom';
import 'antd/dist/antd.css';
import './index.css';
import { Steps, Button, message } from 'antd';

const Step = Steps.Step;

const steps = [{
  title: 'First',
  content: 'First-content',
}, {
  title: 'Second',
  content: 'Second-content',
}, {
  title: 'Last',
  content: 'Last-content',
}];

class App extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      current: 0,
    };
  }

  next() {
    const current = this.state.current + 1;
    this.setState({ current });
  }

  prev() {
    const current = this.state.current - 1;
    this.setState({ current });
  }

  render() {
    const { current } = this.state;
    return (
      <div>
        <Steps current={current}>
          {steps.map(item => <Step key={item.title} title={item.title} />)}
        </Steps>
        <div className="steps-content">{steps[current].content}</div>
        <div className="steps-action">
          {
            current < steps.length - 1
            && <Button type="primary" onClick={() => this.next()}>Next</Button>
          }
          {
            current === steps.length - 1
            && <Button type="primary" onClick={() => message.success('Processing complete!')}>Done</Button>
          }
          {
            current > 0
            && (
            <Button style={{ marginLeft: 8 }} onClick={() => this.prev()}>
              Previous
            </Button>
            )
          }
        </div>
      </div>
    );
  }
}

ReactDOM.render(<App />, document.getElementById('container'));

3 个答案:

答案 0 :(得分:2)

使用内嵌样式

代码

import React from "react";
import ReactDOM from "react-dom";
import "antd/dist/antd.css";
import "./index.css";
import { Steps, Button, message } from "antd";

const Step = Steps.Step;

const steps = [
  {
    title: "First",
    content: "First-content"
  },
  {
    title: "Second",
    content: "Second-content"
  },
  {
    title: "Last",
    content: "Last-content"
  }
];

class App extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      current: 0
    };
  }

  next() {
    const current = this.state.current + 1;
    this.setState({ current });
  }

  prev() {
    const current = this.state.current - 1;
    this.setState({ current });
  }

  render() {
    const { current } = this.state;
    return (
      <div>
        <Steps current={current} style={{ "background-color": "blueviolet" }}>
          {steps.map(item => (
            <Step key={item.title} title={item.title} />
          ))}
        </Steps>
        <div className="steps-content" style={{ "background-color": "grey" }}>
          {steps[current].content}
        </div>
        <div className="steps-action" style={{ "background-color": "blue" }}>
          {current < steps.length - 1 && (
            <Button
              type="primary"
              style={{ "background-color": "red" }}
              onClick={() => this.next()}
            >
              Next
            </Button>
          )}
          {current === steps.length - 1 && (
            <Button
              type="primary"
              onClick={() => message.success("Processing complete!")}
            >
              Done
            </Button>
          )}
          {current > 0 && (
            <Button style={{ marginLeft: 8 }} onClick={() => this.prev()}>
              Previous
            </Button>
          )}
        </div>
      </div>
    );
  }
}

ReactDOM.render(<App />, document.getElementById("container"));

答案 1 :(得分:1)

尝试添加以下CSS

.ant-steps-item-process .ant-steps-item-icon { background: red; }

请参见此example中的index.css

通过一种更强大的方法来更改ant框架样式,请参阅documenatation

答案 2 :(得分:0)

如果您更改了所有尾巴的颜色,则 将以下样式放入 index.css

const truck = trucks.find(truck => truck.truckId==="5"));
if (truck) {
  truck.newmaintenanceRecord = newmaintenanceRecord;
}

更改背景颜色 如果仅更改一步尾颜色,则将className放在.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-tail::after { background-color: red !important; }

Step

index.css

       <Steps className="custome-step" current={1} progressDot>
              <Step title="In Progress" description="Loan Application" />
              <Step title="" description="Loan Vetting" />
              <Step title="" description="Disbursement" />
       </Steps>

example