圖庫更改

This commit is contained in:
jasonchenwork 2025-06-17 09:31:00 +08:00
parent 6a255211e2
commit 8dfb9441f3
76 changed files with 422 additions and 85 deletions

View File

@ -173,7 +173,7 @@ namespace DualScreenDemo
this.Controls.Add(yueYuButtonNewSong);
yingWenButtonNewSong = new Button { Text = "英文2", Visible = false };
yingWenButtonNewSong = new Button {Visible = false };
ResizeAndPositionButton(yingWenButtonNewSong, 1214, 418, 209, 59);
Rectangle yingWenNewSongButtonCropArea = new Rectangle(1214, 418, 209, 59);
@ -189,7 +189,7 @@ namespace DualScreenDemo
this.Controls.Add(yingWenButtonNewSong);
riYuButtonNewSong = new Button { Text = "日語2", Visible = false };
riYuButtonNewSong = new Button { Visible = false };
ResizeAndPositionButton(riYuButtonNewSong, 1214, 481, 209, 59);
Rectangle riYuNewSongButtonCropArea = new Rectangle(1214, 481, 209, 59);
@ -205,7 +205,7 @@ namespace DualScreenDemo
this.Controls.Add(riYuButtonNewSong);
hanYuButtonNewSong = new Button { Text = "韓語2", Visible = false };
hanYuButtonNewSong = new Button {Visible = false };
ResizeAndPositionButton(hanYuButtonNewSong, 1214, 544, 209, 58);
Rectangle hanYuNewSongButtonCropArea = new Rectangle(1214, 544, 209, 58);

View File

@ -25,15 +25,15 @@ namespace DualScreenDemo
int[,] coords = new int[,]
{
{794, 508, 70, 65},
{878, 508, 70, 65},
{962, 508, 70, 65},
{1046, 508, 70, 65},
{1130, 508, 70, 65},
{873, 508, 70, 65},
{952, 508, 70, 65},
{1031, 508, 70, 65},
{1110, 508, 70, 65},
{794, 580, 70, 65},
{878, 580, 70, 65},
{962, 580, 70, 65},
{1046, 580, 70, 65},
{1130, 580, 70, 65}
{873, 580, 70, 65},
{952, 580, 70, 65},
{1031, 580, 70, 65},
{1110, 580, 70, 65}
};
int screenW = Screen.PrimaryScreen.Bounds.Width;
@ -53,7 +53,7 @@ namespace DualScreenDemo
string fileName = (i + 2).ToString("00");
string filePath = Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-" + fileName + ".jpg");
string filePath = Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-" + fileName + ".png");
favoriteNumberButton[i].BackgroundImage = Image.FromFile(filePath);
favoriteNumberButton[i].BackgroundImageLayout = ImageLayout.Stretch;
favoriteNumberButton[i].FlatStyle = FlatStyle.Flat;
@ -85,7 +85,7 @@ namespace DualScreenDemo
Name = "enterFavoriteButton"
};
ResizeAndPositionButton(enterFavoriteButton, 832, 657, 70, 65);
enterFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-12.jpg"));
enterFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-12.png"));
enterFavoriteButton.BackgroundImageLayout = ImageLayout.Stretch;
enterFavoriteButton.FlatStyle = FlatStyle.Flat;
enterFavoriteButton.FlatAppearance.BorderSize = 0;
@ -100,7 +100,7 @@ namespace DualScreenDemo
Name = "newFavoriteButton"
};
ResizeAndPositionButton(newFavoriteButton, 916, 657, 70, 65);
newFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-13.jpg"));
newFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-13.png"));
newFavoriteButton.BackgroundImageLayout = ImageLayout.Stretch;
newFavoriteButton.FlatStyle = FlatStyle.Flat;
newFavoriteButton.FlatAppearance.BorderSize = 0;
@ -115,7 +115,7 @@ namespace DualScreenDemo
Name = "refillFavoriteButton"
};
ResizeAndPositionButton(refillFavoriteButton, 999, 657, 70, 65);
refillFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-14.jpg"));
refillFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-14.png"));
refillFavoriteButton.BackgroundImageLayout = ImageLayout.Stretch;
refillFavoriteButton.FlatStyle = FlatStyle.Flat;
refillFavoriteButton.FlatAppearance.BorderSize = 0;
@ -130,7 +130,7 @@ namespace DualScreenDemo
Name = "closeFavoriteButton"
};
ResizeAndPositionButton(closeFavoriteButton, 1083, 657, 70, 65);
closeFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-15.jpg"));
closeFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-15.png"));
closeFavoriteButton.BackgroundImageLayout = ImageLayout.Stretch;
closeFavoriteButton.FlatStyle = FlatStyle.Flat;
closeFavoriteButton.FlatAppearance.BorderSize = 0;
@ -349,7 +349,7 @@ namespace DualScreenDemo
if (!FavoritePictureBox.Visible)
{
ShowImageOnFavoritePictureBox(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛_工作區域.jpg"));
ShowImageOnFavoritePictureBox(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛_工作區域.png"));
SetFavoritePictureBoxAndButtonsVisibility(true);
}
else
@ -399,14 +399,27 @@ namespace DualScreenDemo
FavoritePictureBox.Image = image;
// 設定 PictureBox 的大小與位置(依你的需要調整)
ResizeAndPositionPictureBox(FavoritePictureBox, 773, 380, (int)(image.Width * 0.8f) , (int)(image.Height * 0.8f));
// ResizeAndPositionPictureBox(FavoritePictureBox, 773, 380, image.Width , image.Height);
// ResizeAndPositionPictureBox(FavoritePictureBox, 773, 380, (int)(image.Width * 0.8f) , (int)(image.Height * 0.8f));
// 不要用 ResizeAndPositionPictureBox 這東西是static 他會導致其他東西顯示錯誤
int screenW = Screen.PrimaryScreen.Bounds.Width;
int screenH = Screen.PrimaryScreen.Bounds.Height;
float widthRatio = screenW / (float)1440;
float heightRatio = screenH / (float)900;
FavoritePictureBox.Location = new Point(
(int)(773 * widthRatio),
(int)(380 * heightRatio)
);
FavoritePictureBox.Size = new Size(
(int)(image.Width * widthRatio),
(int)(image.Height * heightRatio)
);
}
FavoritePictureBox.Visible = true;
}
else
{
Console.WriteLine("圖片檔案不存在:" + imagePath);
}
}

View File

@ -11,7 +11,7 @@ namespace DualScreenDemo
try
{
string imagePath = Path.Combine(Application.StartupPath, "themes/superstar/cropped_qrcode.jpg");
string imagePath = Path.Combine(Application.StartupPath, "themes/superstar/cropped_qrcode.png");
if (!File.Exists(imagePath))
{
Console.WriteLine("Base image not found: " + imagePath);
@ -79,8 +79,10 @@ namespace DualScreenDemo
{
using (Graphics g = Graphics.FromImage(bitmap))
{
g.DrawImage(baseImage, 0, 0);
// g.DrawImage(baseImage, 0, 0);
// cropped qrcode 版型不同設定調整
g.DrawImage(baseImage, new Rectangle(0, 0, bitmap.Width, bitmap.Height));
Rectangle qrCodeRect = new Rectangle(32, 39, 165, 165);
g.DrawImage(qrCodeImage, qrCodeRect);
@ -94,7 +96,7 @@ namespace DualScreenDemo
ResizeAndPositionControl(pictureBoxQRCode, 975, 442, 226, 274);
Bitmap originalImage = new Bitmap(Path.Combine(Application.StartupPath, "themes\\superstar\\cropped_qrcode.jpg"));
Bitmap originalImage = new Bitmap(Path.Combine(Application.StartupPath, "themes\\superstar\\cropped_qrcode.png"));
Rectangle closeQRCodeCropArea = new Rectangle(198, 6, 22, 22);

View File

@ -81,7 +81,8 @@ namespace DualScreenDemo
var parser = new FileIniDataParser();
// 設定檔路徑
string iniFilePath = "config.ini";
string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
IniData data;
@ -107,7 +108,8 @@ namespace DualScreenDemo
private IniData LoadConfigData()
{
var parser = new FileIniDataParser();
string iniFilePath = "config.ini";
string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
// 使用 UTF-8 讀取 INI 檔案並解析內容
using (var reader = new StreamReader(iniFilePath, Encoding.UTF8))
@ -635,7 +637,8 @@ namespace DualScreenDemo
{
// 創建 INI 解析器
var parser = new FileIniDataParser();
string iniFilePath = "config.ini"; // 配置文件的路徑
string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
IniData data;
// 打開並讀取配置文件
@ -681,7 +684,8 @@ namespace DualScreenDemo
private void LoadPictureBoxZhuYinSingerCoordsFromConfig()
{
var parser = new FileIniDataParser();
IniData data = parser.ReadFile("config.ini");
string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
IniData data = parser.ReadFile(iniPath);
var coords = data["PictureBoxZhuYinSingers"];
pictureBoxZhuYinSingerCoords = (

View File

@ -52,7 +52,9 @@ namespace DualScreenDemo
private void LoadNumberButtonCoordsFromConfig()
{
var parser = new FileIniDataParser();
IniData data = parser.ReadFile("config.ini");
string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
IniData data = parser.ReadFile(iniPath);
var buttonList = new List<(int X, int Y, int Width, int Height)>();
@ -398,12 +400,18 @@ namespace DualScreenDemo
clearButtonEnglishSingers.Visible = isVisible;
if (isVisible) clearButtonEnglishSingers.BringToFront();
}
if (closeButtonEnglishSingers != null)
{
closeButtonEnglishSingers.Visible = isVisible;
if (isVisible) closeButtonEnglishSingers.BringToFront();
}
closeButtonEnglishSingers.Visible = isVisible;
if (isVisible) closeButtonEnglishSingers.BringToFront();
inputBoxEnglishSingers.Visible = isVisible;
if (isVisible) inputBoxEnglishSingers.BringToFront();
if (inputBoxEnglishSingers != null)
{
inputBoxEnglishSingers.Visible = isVisible;
if (isVisible) inputBoxEnglishSingers.BringToFront();
}
ResumeLayout();
PerformLayout();
@ -416,10 +424,10 @@ namespace DualScreenDemo
}
modifyButtonEnglishSingers.Refresh();
clearButtonEnglishSingers.Refresh();
closeButtonEnglishSingers.Refresh();
inputBoxEnglishSingers.Refresh();
if (modifyButtonEnglishSingers != null) modifyButtonEnglishSingers.Refresh();
if (clearButtonEnglishSingers != null) clearButtonEnglishSingers.Refresh();
if (closeButtonEnglishSingers != null) closeButtonEnglishSingers.Refresh();
if (inputBoxEnglishSingers != null) inputBoxEnglishSingers.Refresh();
};
if (this.InvokeRequired)

View File

@ -252,7 +252,9 @@ namespace DualScreenDemo
private void LoadPictureBoxPinYinSingerCoordsFromConfig()
{
var parser = new FileIniDataParser();
IniData data = parser.ReadFile("config.ini");
string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
IniData data = parser.ReadFile(iniPath);
var coords = data["PictureBoxPinYinSingers"];
pictureBoxPinYinSingerCoords = (

View File

@ -99,7 +99,8 @@ namespace DualScreenDemo
var parser = new FileIniDataParser();
// 設定檔路徑
string iniFilePath = "config.ini";
string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
IniData data;
@ -125,7 +126,8 @@ namespace DualScreenDemo
private IniData LoadConfigDataforWordCountSingers()
{
var parser = new FileIniDataParser();
string iniFilePath = "config.ini";
string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
// 使用 UTF-8 讀取 INI 檔案並解析內容
using (var reader = new StreamReader(iniFilePath, Encoding.UTF8))
@ -636,7 +638,8 @@ namespace DualScreenDemo
{
// 創建 INI 解析器
var parser = new FileIniDataParser();
string iniFilePath = "config.ini"; // 配置文件的路徑
string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
IniData data;
// 打開並讀取配置文件
@ -682,7 +685,8 @@ namespace DualScreenDemo
private void LoadPictureBoxWordCountSingerCoordsFromConfig()
{
var parser = new FileIniDataParser();
IniData data = parser.ReadFile("config.ini");
string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
IniData data = parser.ReadFile(iniPath);
var coords = data["PictureBoxWordCountSingers"];
pictureBoxWordCountSingerCoords = (

View File

@ -378,7 +378,9 @@ namespace DualScreenDemo
var parser = new FileIniDataParser();
// 讀取 config.ini 設定檔的內容
IniData data = parser.ReadFile("config.ini");
string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
IniData data = parser.ReadFile(iniPath);
// 取得 "PictureBoxZhuYinSongs" 段落的設定數據
var coords = data["PictureBoxZhuYinSongs"];

View File

@ -102,7 +102,8 @@ namespace DualScreenDemo
var parser = new FileIniDataParser();
// 設定檔路徑
string iniFilePath = "config.ini";
string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
IniData data;
@ -128,7 +129,8 @@ namespace DualScreenDemo
private IniData LoadConfigDataforSongIDSearch()
{
var parser = new FileIniDataParser();
string iniFilePath = "config.ini";
string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
// 使用 UTF-8 讀取 INI 檔案並解析內容
using (var reader = new StreamReader(iniFilePath, Encoding.UTF8))
@ -647,7 +649,8 @@ namespace DualScreenDemo
{
// 創建 INI 解析器
var parser = new FileIniDataParser();
string iniFilePath = "config.ini"; // 配置文件的路徑
string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
IniData data;
// 打開並讀取配置文件
@ -693,7 +696,9 @@ namespace DualScreenDemo
private void LoadPictureBoxSongIDSongCoordsFromConfig()
{
var parser = new FileIniDataParser();
IniData data = parser.ReadFile("config.ini");
string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
IniData data = parser.ReadFile(iniPath);
var coords = data["PictureBoxSongIDSearch"];
pictureBoxSongIDSongCoords = (

View File

@ -375,7 +375,9 @@ namespace DualScreenDemo
var parser = new FileIniDataParser();
// 讀取 config.ini 文件並解析成 IniData 對象
IniData data = parser.ReadFile("config.ini");
string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
IniData data = parser.ReadFile(iniPath);
// 取得 PictureBoxPinYinSongs 區段的設定值
var coords = data["PictureBoxPinYinSongs"];

View File

@ -68,7 +68,8 @@ namespace DualScreenDemo
private IniData LoadConfigDataforWordCountSongs()
{
var parser = new FileIniDataParser();
string iniFilePath = "config.ini";
string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
// 使用 UTF-8 讀取 INI 檔案並解析內容
using (var reader = new StreamReader(iniFilePath, Encoding.UTF8))
@ -579,7 +580,8 @@ namespace DualScreenDemo
{
// 創建 INI 解析器
var parser = new FileIniDataParser();
string iniFilePath = "config.ini"; // 配置文件的路徑
string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
IniData data;
// 打開並讀取配置文件
@ -625,7 +627,9 @@ namespace DualScreenDemo
private void LoadPictureBoxWordCountSongCoordsFromConfig()
{
var parser = new FileIniDataParser();
IniData data = parser.ReadFile("config.ini");
string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini");
IniData data = parser.ReadFile(iniPath);
var coords = data["PictureBoxWordCountSongs"];
pictureBoxWordCountSongCoords = (

View File

@ -17,7 +17,7 @@
margin: 20px;
}
.header {
background: #D32F2F;
background: #FFA500;
padding: 10px 0;
color: white;
font-size: 24px;

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,288 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Super Star</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
text-align: center;
margin: 20px;
}
.header {
background: #FFA500;
padding: 10px 0;
color: white;
font-size: 24px;
font-weight: 500;
text-align: center;
}
.banner {
width: 100%;
max-width: 600px;
margin: 0 auto 20px;
}
.banner img {
width: 100%;
height: auto;
}
.menu-toggle {
position: absolute;
top: 10px;
left: 10px;
cursor: pointer;
}
.menu {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 250px;
background: white;
transform: translateX(-250px);
transition: transform 0.3s ease;
box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}
.menu.active {
transform: translateX(0);
}
.menu ul {
list-style: none;
padding: 0;
margin: 0;
}
.menu ul li {
padding: 15px 20px;
border-bottom: 1px solid #ccc;
}
.menu ul li a {
text-decoration: none;
color: #333;
display: block;
}
.menu ul li a:hover {
background: #eee;
}
.container {
margin: 20px;
}
.button-container {
max-width: 600px;
margin: 0 auto;
}
.content {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
padding: 10px 20px;
max-width: 600px;
margin: 0 auto;
justify-content: center;
}
@media (max-width: 600px) {
.content {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
}
@media (max-width: 400px) {
.content {
grid-template-columns: repeat(2, 1fr);
gap: 8px;
}
.card {
width: auto;
max-width: 160px;
}
}
.card {
width: 100%;
max-width: 180px;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #FF4081, #FF4081);
color: white;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
overflow: hidden;
cursor: pointer;
}
.card:hover {
transform: scale(1.05); /* 增加按鈕的點擊反應 */
}
.card img {
width: 100%;
height: auto;
object-fit: contain;
}
.section {
display: none;
}
.section.active {
display: block;
}
</style>
</head>
<body>
<div class="header">金麗都 自助式KTV</div>
<!-- Add Banner -->
<div class="banner">
<img src="手機點歌/LOGO_721x211px.png" alt="超級巨星 Banner">
</div>
<div class="menu-toggle">
<svg height="32px" id="Layer_1" style="enable-background:new 0 0 32 32;" version="1.1" viewBox="0 0 32 32" width="32px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M4,10h24c0.553,0,1-0.447,1-1s-0.447-1-1-1H4c-0.553,0-1,0.447-1,1S3.447,10,4,10z"/><path d="M28,15H4c-0.553,0-1,0.447-1,1s0.447,1,1,1h24c0.553,0,1-0.447,1-1S28.553,15,28,15z"/><path d="M28,22H4c-0.553,0-1,0.447-1,1s0.447,1,1,1h24c0.553,0,1-0.447,1-1S28.553,22,28,22z"/></svg>
</div>
<div class="menu">
<ul>
<li><a href="windows.html" class="menu-link">首頁</a></li>
<li><a href="new-songs.html" class="menu-link">新歌快報</a></li>
<li><a href="top-ranking.html" class="menu-link">熱門排行</a></li>
<li><a href="search-singer.html" class="menu-link">歌星查詢</a></li>
<li><a href="search-song.html" class="menu-link">歌名查詢</a></li>
<li><a href="clicked-song.html" class="menu-link">已點歌曲</a></li>
<!-- <!-- //<li><a href="my-favorite.html" class="menu-link">我的最愛</a></li> -->
<li><a href="sound-control.html" class="menu-link">聲音控制</a></li>
<li><a href="social-media.html" class="menu-link">社群媒體</a></li>
<li><a href="love-message.html" class="menu-link">真情告白</a></li>
<li><a href="mood-stickers.html" class="menu-link">心情貼圖</a></li>
<!-- <li><a href="song-order.html" class="menu-link">輸入點歌序號</a></li>
<li><a href="profile-settings.html" class="menu-link">會員資料設定</a></li>
<li><a href="register.html" class="menu-link">註冊會員</a></li> -->
</ul>
</div>
<div class="container">
<div class="button-container">
<div class="content">
<div class="card" onclick="location.href='new-songs.html'">
<img src="手機點歌/首頁_工作區域 1.png" alt="New Song">
</div>
<div class="card" onclick="location.href='top-ranking.html'">
<img src="手機點歌/首頁-02.png" alt="Top Ranking">
</div>
<div class="card" onclick="location.href='search-singer.html'">
<img src="手機點歌/首頁-03.png" alt="Search Singer">
</div>
<div class="card" onclick="location.href='search-song.html'">
<img src="手機點歌/首頁-04.png" alt="Search Song">
</div>
<div class="card" onclick="orderSongAndNavigate()">
<img src="手機點歌/首頁-05.png" alt="Clicked Song">
</div>
<!-- <div class="card" onclick="location.href='my-favorite.html'">
<img src="手機點歌/首頁-06.png" alt="My Favorite">
</div> -->
<div class="card" onclick="location.href='sound-control.html'">
<img src="手機點歌/首頁-07.png" alt="Sound Control">
</div>
<div class="card" onclick="location.href='social-media.html'">
<img src="手機點歌/首頁-08.png" alt="Social Media">
</div>
<div class="card" onclick="location.href='love-message.html'">
<img src="手機點歌/首頁-09.png" alt="Social Media">
</div>
<div class="card" onclick="location.href='mood-stickers.html'">
<img src="手機點歌/首頁-10.png" alt="Social Media">
</div>
</div>
</div>
</div>
<script>
var randomFolder = 'jgnq0yhxnfl'; // 這裡的 'abc123' 應由服務器生成並注入
// 獲取當前頁面的 URL
var currentURL = window.location.href;
// 檢查是否包含正確的隨機亂碼
if (!currentURL.includes('/' + randomFolder + '/')) {
// 如果不包含正確的亂碼,顯示錯誤或跳轉到正確的頁面
document.body.innerHTML = '<h1>403 Forbidden: Invalid Access</h1>';
// 也可以重定向到正確的頁面
// window.location.href = `http://${window.location.hostname}/${randomFolder}/index.html`;
}
// 首先處理導航 - 確保最高優先級
document.addEventListener('DOMContentLoaded', function() {
// 導航處理
const menuLinks = document.querySelectorAll('.menu-link');
menuLinks.forEach(link => {
// 移除所有現有的事件監聽器
const oldLink = link.cloneNode(true);
link.parentNode.replaceChild(oldLink, link);
// 添加新的點擊處理
oldLink.addEventListener('click', function(e) {
e.preventDefault();
e.stopPropagation();
e.stopImmediatePropagation();
const href = this.getAttribute('href');
if (href) {
window.location.href = href;
}
}, true); // 使用捕獲階段
});
// 菜單切換
const menuToggle = document.querySelector('.menu-toggle');
const menu = document.querySelector('.menu');
if (menuToggle && menu) {
menuToggle.addEventListener('click', (e) => {
e.stopPropagation();
e.stopImmediatePropagation();
menu.classList.toggle('active');
}, true);
document.addEventListener('click', (e) => {
if (!menu.contains(e.target) && !menuToggle.contains(e.target)) {
menu.classList.remove('active');
}
}, true);
}
});
function orderSongAndNavigate() {
// 先發送 POST 請求到本機伺服器
fetch('/ordered-song', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: null
})
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.json();
})
.then(data => {
console.log('Request successful:', data);
// 請求成功後導向到 clicked-song.html
location.href = 'clicked-song.html';
})
.catch(error => {
console.error('There was a problem with the request:', error);
// 可以在這裡顯示錯誤信息或進行其他錯誤處理
});
}
</script>
</body>
</html>

View File

@ -17,7 +17,7 @@
margin: 20px;
}
.header {
background: #D32F2F;
background: #FFA500;
padding: 10px 0;
color: white;
font-size: 24px;

View File

@ -17,7 +17,7 @@
margin: 20px;
}
.header {
background: #D32F2F;
background: #FFA500;
padding: 10px 0;
color: white;
font-size: 24px;

View File

@ -17,7 +17,7 @@
margin: 20px;
}
.header {
background: #D32F2F;
background: #FFA500;
padding: 10px 0;
color: white;
font-size: 24px;

View File

@ -17,7 +17,7 @@
margin: 20px;
}
.header {
background: #D32F2F;
background: #FFA500;
padding: 10px 0;
color: white;
font-size: 24px;

View File

@ -17,7 +17,7 @@
margin: 20px;
}
.header {
background: #D32F2F;
background: #FFA500;
padding: 10px 0;
color: white;
font-size: 24px;
@ -95,7 +95,7 @@
<!-- Add Banner -->
<div class="banner">
<img src="手機點歌/BANNER-13.png" alt="超級巨星 Banner">
<img src="手機點歌/BANNER-13.png" alt="金麗都 Banner">
</div>
<div class="menu-toggle">

View File

@ -17,7 +17,7 @@
margin: 20px;
}
.header {
background: #D32F2F;
background: #FFA500;
padding: 10px 0;
color: white;
font-size: 24px;
@ -157,7 +157,7 @@
<!-- Add Banner -->
<div class="banner">
<img src="手機點歌/BANNER-14.png" alt="超級巨星 Banner">
<img src="手機點歌/BANNER-14.png" alt="金麗都 Banner">
</div>
<div class="menu-toggle">

View File

@ -17,7 +17,7 @@
margin: 20px;
}
.header {
background: #D32F2F;
background: #FFA500;
padding: 10px 0;
color: white;
font-size: 24px;
@ -271,7 +271,7 @@
<!-- Add Banner -->
<div class="banner">
<img src="手機點歌/BANNER-05.png" alt="超級巨星 Banner">
<img src="手機點歌/BANNER-05.png" alt="金麗都 Banner">
</div>
<div class="menu-toggle">
@ -310,7 +310,7 @@
<tr>
<th>歌名</th>
<th>歌手</th>
<th>編號</th>
<th>語別</th>
</tr>
</thead>
<tbody>
@ -327,7 +327,7 @@
<p>歌名:<span id="detail-song-name"></span></p>
<p>編號:<span id="detail-song-number"></span></p>
<p>歌手:<span id="detail-singer"></span></p>
<p>語別:<span id="detail-language"></span></p>
<button id="order-song-button">包廂點歌</button>
<button id="insert-song-button">插播歌曲</button>
</div>
@ -388,16 +388,17 @@
const song = {
Song: row.cells[0].textContent,
ArtistA: row.cells[1].textContent,
SongNumber: row.cells[2].textContent,
SongFilePathHost1: row.cells[3].textContent,
SongFilePathHost2: row.cells[4].textContent
Category: row.cells[2].textContent,
SongNumber: row.cells[3].textContent,
SongFilePathHost1: row.cells[4].textContent,
SongFilePathHost2: row.cells[5].textContent
};
window.selectedSong = song;
document.getElementById('detail-song-name').textContent = song.Song;
document.getElementById('detail-song-number').textContent = song.SongNumber;
document.getElementById('detail-singer').textContent = song.ArtistA;
//document.getElementById('detail-language').textContent = song.Category;
document.getElementById('detail-language').textContent = song.Category;
document.getElementById('song-details').style.display = 'block';
document.getElementById('overlay').style.display = 'block';
@ -542,6 +543,7 @@
row.innerHTML = `
<td>${song.Song}</td>
<td>${song.ArtistA}</td>
<td>${song.Category}</td>
<td>${song.SongNumber}</td>
<td style="display:none;">${song.SongFilePathHost1}</td>
<td style="display:none;">${song.SongFilePathHost2}</td>
@ -554,7 +556,7 @@
document.getElementById('detail-song-name').textContent = song.Song;
document.getElementById('detail-song-number').textContent = song.SongNumber;
document.getElementById('detail-singer').textContent = song.ArtistA;
document.getElementById('detail-language').textContent = song.Category;
document.getElementById('song-details').style.display = 'block';
document.getElementById('overlay').style.display = 'block';

View File

@ -17,7 +17,7 @@
margin: 20px;
}
.header {
background: #D32F2F;
background: #FFA500;
padding: 10px 0;
color: white;
font-size: 24px;
@ -291,7 +291,7 @@
<tr>
<th>歌名</th>
<th>歌手</th>
<th>編號</th>
<th>語別</th>
</tr>
</thead>
<tbody>
@ -309,6 +309,7 @@
<p>歌名:<span id="detail-song-name"></span></p>
<p>編號:<span id="detail-song-number"></span></p>
<p>歌手:<span id="detail-singer"></span></p>
<p>語別:<span id="detail-language"></span></p>
<button id="order-song-button">包廂點歌</button>
<button id="insert-song-button">插播歌曲</button>
</div>
@ -379,15 +380,15 @@
const row = document.createElement('tr');
const songNameCell = document.createElement('td');
const singerCell = document.createElement('td');
const SongNumberCell = document.createElement('td');
const languageCell = document.createElement('td');
songNameCell.textContent = song.Song;
singerCell.textContent = song.ArtistA;
SongNumberCell.textContent = song.SongNumber;
languageCell.textContent = song.Category;
row.appendChild(songNameCell);
row.appendChild(singerCell);
row.appendChild(SongNumberCell);
row.appendChild(languageCell);
row.addEventListener('click', (e) => {
e.preventDefault();
@ -398,7 +399,7 @@
document.getElementById('detail-song-name').textContent = song.Song;
document.getElementById('detail-song-number').textContent = song.SongNumber;
document.getElementById('detail-singer').textContent = song.ArtistA;
//document.getElementById('detail-language').textContent = song.Category;
document.getElementById('detail-language').textContent = song.Category;
document.getElementById('song-details').style.display = 'block';
});

View File

@ -17,7 +17,7 @@
margin: 20px;
}
.header {
background: #D32F2F;
background: #FFA500;
padding: 10px 0;
color: white;
font-size: 24px;

View File

@ -17,7 +17,7 @@
margin: 20px;
}
.header {
background: #D32F2F;
background: #FFA500;
padding: 10px 0;
color: white;
font-size: 24px;

View File

@ -17,7 +17,7 @@
margin: 20px;
}
.header {
background: #D32F2F;
background: #FFA500;
padding: 10px 0;
color: white;
font-size: 24px;

View File

@ -17,7 +17,7 @@
margin: 20px;
}
.header {
background: #D32F2F;
background: #FFA500;
padding: 10px 0;
color: white;
font-size: 24px;

View File

@ -17,7 +17,7 @@
margin: 20px;
}
.header {
background: #D32F2F;
background: #FFA500;
padding: 10px 0;
color: white;
font-size: 24px;
@ -136,7 +136,7 @@
</head>
<body>
<div class="header">超級巨星 自助式KTV</div>
<div class="header">金麗都 自助式KTV</div>
<!-- Add Banner -->
<div class="banner">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 133 KiB

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 108 KiB

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 KiB

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 133 KiB

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 KiB

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 133 KiB

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 KiB

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 132 KiB

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 KiB

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 132 KiB

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 579 KiB

After

Width:  |  Height:  |  Size: 525 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 KiB

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 440 KiB

After

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB