<script> document.addEventListener('DOMContentLoaded', function() { // Identify Buttons const mainButton = document.querySelector('.scheme-switch-alpha__button--main'); const altButton = document.querySelector('.scheme-switch-alpha__button--alt'); // Set Focus on Click With Slight Delay altButton.addEventListener('click', function() { setTimeout(function() { mainButton.focus(); }, 1); }); mainButton.addEventListener('click', function() { setTimeout(function() { altButton.focus(); }, 1); }); }); </script>
모델이 무거워 접속이 불안정할 수 있는 부분 양해바랍니다!