안녕하세요. EB골프입니다.
각 센터 운영 시간 안내드립니다.
[EB골프 수성-수성스퀘어]
🟢 주중 09:00~22:30
🟢 주말/공휴일 10:00~20:00
⛔️ 분기에 한 번 시설 점검 휴장(휴장시 별도 공지)
[EB골프 동대구-현대시티아울렛]
🟢 주중 09:00~22:30
🟢 주말/공휴일 10:30~21:00
⛔️ 분기에 한 번 시설 점검 휴장(휴장시 별도 공지)
대구골프레슨의 중심! EB골프 아카데미
안녕하세요. EB골프입니다.
각 센터 운영 시간 안내드립니다.
[EB골프 수성-수성스퀘어]
🟢 주중 09:00~22:30
🟢 주말/공휴일 10:00~20:00
⛔️ 분기에 한 번 시설 점검 휴장(휴장시 별도 공지)
[EB골프 동대구-현대시티아울렛]
🟢 주중 09:00~22:30
🟢 주말/공휴일 10:30~21:00
⛔️ 분기에 한 번 시설 점검 휴장(휴장시 별도 공지)
<style>
/* 워드프레스 테마 무시 컨테이너 */
#rangex-fullscreen-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: 999999;
background-color: #000;
margin: 0;
padding: 0;
overflow: hidden;
/* 플렉스 박스 레이아웃: 세로 방향으로 배치 */
display: flex;
flex-direction: column;
}
/* 1. 상단 이미지 스타일 (신규 추가) */
#header-image {
width: 100%; /* 좌우 꽉 차게 */
height: auto; /* 이미지 비율 유지 */
display: block; /* 이미지 아래 여백 제거 */
}
/* 2. 랭킹 보드 iframe 스타일 (수정됨) */
#rangex-frame {
width: 100%;
/* 플렉스 컨테이너에서 나머지 공간을 모두 차지하도록 flex-grow 설정 */
height: 0; /* height 100% 대신 flex-grow가 정상 작동하도록 설정 */
flex-grow: 1; /* 나머지 공간을 모두 차지 */
border: none;
display: block;
}
/* 전체화면 버튼 스타일 (이전과 동일) */
#fs-toggle-btn {
position: fixed;
bottom: 40px;
right: 40px;
width: 80px;
height: 80px;
background-color: rgba(255, 255, 255, 0.15);
color: #fff;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
cursor: pointer;
z-index: 1000000;
font-size: 14px;
font-weight: bold;
backdrop-filter: blur(10px);
display: flex;
justify-content: center;
align-items: center;
text-align: center;
line-height: 1.2;
box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
#fs-toggle-btn:hover {
background-color: rgba(255, 255, 255, 0.3);
}
body {
overflow: hidden !important;
}
</style>
<div id="rangex-fullscreen-wrapper">
<img id="header-image" src="https://ebgolf.co.kr/wp-content/uploads/2026/04/삼탠상단-1-scaled.png" alt="EB골프 랭킹보드 헤더">
<iframe src="https://product-frontend-smart-board.rangex.golf/rank/235" id="rangex-frame" allowfullscreen="">
</iframe>
<button id="fs-toggle-btn" onclick="requestFullScreen()">
모니터<br>꽉차게
</button>
</div>
<script>
function requestFullScreen() {
var el = document.documentElement;
if (!document.fullscreenElement) {
if (el.requestFullscreen) {
el.requestFullscreen();
} else if (el.webkitRequestFullscreen) {
el.webkitRequestFullscreen();
}
} else {
if (document.exitFullscreen) {
document.exitFullscreen();
}
}
}
// 윈도우 크기 변경 시 iframe 리사이징 강제 최적화
window.addEventListener('resize', function() {
const wrapper = document.getElementById('rangex-fullscreen-wrapper');
wrapper.style.width = window.innerWidth + 'px';
wrapper.style.height = window.innerHeight + 'px';
});
</script>