Search

유입 경로 이벤트 (ing) (1)

<style> .more_layout { display: flex; justify-content: center; /* 우측에 정렬 */ align-items: center; /* 세로 중앙 정렬 */ } .more { display: flex; cursor: pointer; align-items: center; justify-content: center; width: 100px; font-size: 13px; padding: 10px 6px; height: 26px; border-radius: 4px; font-weight: 400; color: #616161; background-color: #F6F6F6; } /* hover 시 색상 변경 */ .more:hover { color: #7062E1; background-color: #E4E5E9; } </style> </head> <body> <div class="more_layout"> <div class="more" id="moreButton">더보기</div> </div> <script> document.getElementById('moreButton').addEventListener('click', function() { CodenButter("event", { name: "goal|bjurvypplj" }); // 이벤트 실행 window.location.href = 'https://wannago.oopy.io/program/20'; // 페이지 이동 }); </script> </body> </html>
HTML
복사