Display Text Over SVG Element On Hover

前端 未结 4 435
陌清茗
陌清茗 2020-12-17 22:22

So I have a simple SVG element (copied below), and I want to display text (currently within the data-label attribute) when the rectangle with the bar

4条回答
  •  别那么骄傲
    2020-12-17 23:01

    div>svg:hover {
      box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.589);
      transform: scale(1.2);
      transition: all 0.2s ease-in-out;
    }
    
    div>svg {
      margin: 10px 14px;
      padding: 8px;
      width: 35px;
      height: 35px;
      border-radius: 50%;
    }
    
    
    
    
      
提交回复
热议问题