老虎機專區
SLOTS
老虎機
高回報與爆分體驗
嚴選熱門機台與高人氣主題,搭配免費試玩與波動解析。
SLOTS PICKS精選老虎機
高人氣機台與爆分節奏
POPULAR
高人氣機台
熱門主題與高回報設定。
進入遊戲FEATURES
免費旋轉
掌握觸發條件與連線節奏。
進入遊戲RTP
RTP 與波動
回報率與高波動解析。
進入遊戲免費試玩
PG 與 PP 老虎機品牌可切換,點選卡片即可在下方框架中載入試玩。
彈窗將在本站內開啟,避免外跳。若仍無法開始,需使用 CQ9 官方直開連結。
若試玩頁無法顯示,通常為外部站點限制嵌入造成。
GUIDES & TIPS老虎機策略與攻略
掌握 RTP 與免費旋轉技巧
老虎機3分鐘閱讀
老虎機投注管理入門
老虎機投注管理入門 老虎機投注管理入門 本頁提供重點整理與操作指引,方便快速掌握主要資訊。 回到首頁 比選遊戲 […]
老虎機3分鐘閱讀
老虎機類型介紹
老虎機類型介紹 本頁提供重點整理與操作指引,方便快速掌握主要資訊。 回到首頁從玩法結構到機制差異一次看懂 老虎 […]
老虎機玩法節奏快,建議先從免費試玩熟悉機台波動與圖示連線邏輯。
了解 RTP 與高波動差異,可協助你選擇適合的投注節奏。
JOIN US TODAY立即體驗老虎機
免費試玩與高回報機台等你挑戰
const brandTabs = document.querySelectorAll(".brand-tab");
const brandPanels = document.querySelectorAll(".brand-panel");brandTabs.forEach((tab) => {
tab.addEventListener("click", () => {
const brand = tab.dataset.brand;
brandTabs.forEach((btn) => btn.classList.remove("is-active"));
tab.classList.add("is-active");
brandPanels.forEach((panel) => {
panel.classList.toggle("is-active", panel.dataset.brand === brand);
});
});
});const wireSlotGrid = (gridId, frameId) => {
const grid = document.getElementById(gridId);
const frame = document.getElementById(frameId);
if (!grid || !frame) return;
grid.addEventListener("click", (event) => {
const card = event.target.closest(".slot-card");
if (!card) return;
const src = card.getAttribute("data-src");
if (src) {
frame.src = src;
}
grid.querySelectorAll(".slot-card").forEach((item) => {
item.classList.remove("is-active");
});
card.classList.add("is-active");
});
};wireSlotGrid("pgSlotGrid", "pgSlotFrame");
wireSlotGrid("ppSlotGrid", "ppSlotFrame");
wireSlotGrid("cq9SlotGrid", "cq9SlotFrame");const cq9Modal = document.getElementById("cq9Modal");
const cq9ModalFrame = document.getElementById("cq9ModalFrame");
const cq9ModalOpen = document.getElementById("cq9ModalOpen");
const cq9ModalClose = document.getElementById("cq9ModalClose");
const cq9SlotGrid = document.getElementById("cq9SlotGrid");
const cq9SlotFrame = document.getElementById("cq9SlotFrame");const getActiveCq9Src = () => {
const active = cq9SlotGrid?.querySelector(".slot-card.is-active");
return (
active?.getAttribute("data-src") ||
cq9SlotFrame?.getAttribute("src") ||
"https://demo.cqgame.games/cn/Home"
);
};const openCq9Modal = (src) => {
if (!cq9Modal || !cq9ModalFrame) return;
cq9ModalFrame.src = src;
cq9Modal.classList.add("is-open");
document.body.classList.add("modal-open");
};const closeCq9Modal = () => {
if (!cq9Modal) return;
cq9Modal.classList.remove("is-open");
document.body.classList.remove("modal-open");
};if (cq9ModalOpen) {
cq9ModalOpen.addEventListener("click", () => {
openCq9Modal(getActiveCq9Src());
});
}if (cq9SlotGrid) {
cq9SlotGrid.addEventListener("click", (event) => {
const button = event.target.closest(".slot-button");
if (!button) return;
const card = event.target.closest(".slot-card");
const src = card?.getAttribute("data-src");
openCq9Modal(src || getActiveCq9Src());
});
}if (cq9ModalClose) {
cq9ModalClose.addEventListener("click", closeCq9Modal);
}if (cq9Modal) {
cq9Modal.addEventListener("click", (event) => {
if (event.target === cq9Modal) closeCq9Modal();
});
}document.addEventListener("keydown", (event) => {
if (event.key === "Escape") closeCq9Modal();
});