How do you cross the triangle that turns in the conduct?



  • The icon shall be turned upwards at a wider angle

    введите сюда описание изображения

    How can that be done by transforms or pseudonyms?



  • svg {
      width: 100%;
      max-height: calc(100vh - 16px);
      display: block;
      margin: auto;
      color: blue;
      /* pointer-events: none; */
    }
    

    path {
    fill: currentColor;
    stroke: currentColor;
    stroke-linejoin: round;
    stroke-width: 1;
    /* pointer-events: fill; */
    }

    svg:hover {
    transform: rotate(180deg);
    }

    <svg viewBox="-5 0 10 6">
    <path d="M-4,1L4,1L0,5Z" />
    </svg>



Suggested Topics

  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2