js 스크롤하면 clip-path 움직이기
.mainVisual { clip-path: polygon(0 0,0 75%,50% 75%,100% 75%, 100% 0); // clip-path: polygon(0 0, 0 75%, 50% 100%, 100% 75%, 100% 0); } $(window).scroll(function () { const mqlVisual = matchMedia("screen and (min-width: 1441px)"); const $mainVisual = document.querySelector(".mainVisual"); const $mainVisualScroll = 75 + window.scrollY / 35; if (mqlVisual.matches) { if ($mainVisualScroll