对孩子影响组件悬停影响父母

时间:2019-03-21 10:31:47

标签: javascript css reactjs css3 ecmascript-6

我有这个组件结构

const Marker = props => (
  <Wrap>
    <Caret>
      <Container>$1000</Container>
    </Caret>
  </Wrap>
);

插入符号必须是灰色的容器被悬停了。问题在于插入符号不是容器的子级。悬停时如何使整个标记具有相同的颜色?

演示https://codesandbox.io/s/7j6n8v23m6

1 个答案:

答案 0 :(得分:0)

我已经设法在不使用triangleShadow组件的情况下实现了所需的效果,而是使用了您的样式并将其直接设置在标记样式div上。从这里开始,我的目标是伪元素。

  const Container = styled.div`
  text-align: center;
  display: inline-block;
  padding: 8px 12px;
  border: 3px solid #f48420;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;

  &:hover {
    background: #eee;
    &:after {
      border: 0.5em solid #eee;
    }
  }

  &:after {
    content: "";
    position: absolute;
    cursor: pointer;
    width: 0;
    height: 0;
    margin-left: -0.7em;
    bottom: -0.8em;
    left: 50%;
    box-sizing: border-box;
    border: 0.5em solid white;
    transform-origin: 0 0;
    transform: rotate(-45deg);
    box-shadow: -2px 2px 2px 0 rgba(0, 0, 0, 0.3);
  }
`;

这里是工作示例:https://codesandbox.io/s/pk23o04opj

祝你好运