增加相关页面

This commit is contained in:
zhx 2026-06-10 10:58:19 +08:00
parent d01f714376
commit 300b251645
52 changed files with 1638 additions and 1 deletions

View File

@ -1,4 +1,13 @@
{
"diceMatch.pageTitle": "مطابقة النرد",
"diceMatch.pageLabel": "ردهة مطابقة النرد",
"diceMatch.match": "مطابقة",
"diceMatch.matching": "جارٍ البحث...",
"diceMatch.winnerReceives": "الفائز يحصل على",
"diceMatch.feeNote": "يدفع اللاعب الفائز رسوم معاملة 5%",
"diceMatch.unknownOpponent": "?",
"diceMatch.win": "فوز",
"diceMatch.coins": "عملات",
"roomReward.pageTitle": "فعالية مكافآت الغرفة",
"roomReward.pageLabel": "فعالية مكافآت الغرفة",
"roomReward.currentTarget": "هدف المكافأة الحالي",

View File

@ -1,4 +1,13 @@
{
"diceMatch.pageTitle": "Dice Match",
"diceMatch.pageLabel": "Dice match lobby",
"diceMatch.match": "Match",
"diceMatch.matching": "Matching...",
"diceMatch.winnerReceives": "The winner receives",
"diceMatch.feeNote": "The winning player pays a 5% transaction fee",
"diceMatch.unknownOpponent": "?",
"diceMatch.win": "Win",
"diceMatch.coins": "Coins",
"roomReward.pageTitle": "Room Reward Event",
"roomReward.pageLabel": "Room Reward Event",
"roomReward.currentTarget": "Current reward target",

View File

@ -1,4 +1,13 @@
{
"diceMatch.pageTitle": "Partida de dados",
"diceMatch.pageLabel": "Lobby de partida de dados",
"diceMatch.match": "Emparejar",
"diceMatch.matching": "Emparejando...",
"diceMatch.winnerReceives": "El ganador recibe",
"diceMatch.feeNote": "El jugador ganador paga una comisión del 5%",
"diceMatch.unknownOpponent": "?",
"diceMatch.win": "Victoria",
"diceMatch.coins": "Monedas",
"roomReward.pageTitle": "Evento de recompensas de sala",
"roomReward.pageLabel": "Evento de recompensas de sala",
"roomReward.currentTarget": "Objetivo de recompensa actual",

View File

@ -1,4 +1,13 @@
{
"diceMatch.pageTitle": "Match Dadu",
"diceMatch.pageLabel": "Lobi match dadu",
"diceMatch.match": "Match",
"diceMatch.matching": "Mencari...",
"diceMatch.winnerReceives": "Pemenang menerima",
"diceMatch.feeNote": "Pemain yang menang membayar biaya transaksi 5%",
"diceMatch.unknownOpponent": "?",
"diceMatch.win": "Menang",
"diceMatch.coins": "Koin",
"roomReward.pageTitle": "Event Hadiah Room",
"roomReward.pageLabel": "Event Hadiah Room",
"roomReward.currentTarget": "Target hadiah saat ini",

View File

@ -1,4 +1,13 @@
{
"diceMatch.pageTitle": "Zar Eşleşmesi",
"diceMatch.pageLabel": "Zar eşleşme lobisi",
"diceMatch.match": "Eşleş",
"diceMatch.matching": "Eşleşiyor...",
"diceMatch.winnerReceives": "Kazanan alır",
"diceMatch.feeNote": "Kazanan oyuncu %5 işlem ücreti öder",
"diceMatch.unknownOpponent": "?",
"diceMatch.win": "Kazan",
"diceMatch.coins": "Coin",
"roomReward.pageTitle": "Oda Ödül Etkinliği",
"roomReward.pageLabel": "Oda Ödül Etkinliği",
"roomReward.currentTarget": "Mevcut ödül hedefi",

View File

@ -1,4 +1,13 @@
{
"diceMatch.pageTitle": "骰子匹配",
"diceMatch.pageLabel": "骰子匹配大厅",
"diceMatch.match": "匹配",
"diceMatch.matching": "匹配中...",
"diceMatch.winnerReceives": "获胜者可获得",
"diceMatch.feeNote": "获胜玩家需支付 5% 交易手续费",
"diceMatch.unknownOpponent": "?",
"diceMatch.win": "胜利",
"diceMatch.coins": "金币",
"roomReward.pageTitle": "房间奖励活动",
"roomReward.pageLabel": "房间奖励活动",
"roomReward.currentTarget": "当前奖励目标",

View File

@ -1,5 +1,5 @@
(function () {
var remoteBridgeVersion = '20260609.1';
var remoteBridgeVersion = '20260610.1';
function safeCall(fn, args) {
try {
@ -129,6 +129,9 @@
if (values.indexOf('zeeone') >= 0) {
return 'zeeone_v1';
}
if (values.indexOf('reyou') >= 0 || values.indexOf('hotgame') >= 0) {
return 'reyou_v1';
}
return 'generic';
}
@ -176,6 +179,53 @@
window.webkit.messageHandlers[name] = { postMessage: fn.postMessage };
}
function notifyReyouRechargeSuccess(body) {
var payload = body || {};
var notified = false;
[window.rechargeSuccess, window.onRechargeSuccess].forEach(
function (fn) {
if (typeof fn === 'function') {
safeCall(fn, [payload]);
notified = true;
}
}
);
try {
window.dispatchEvent(
new CustomEvent('rechargeSuccess', { detail: payload })
);
} catch (_) {}
return notified;
}
function installReyouBridgeAliases(nativeBridge) {
var jsBridge = window.JsBridge || {};
jsBridge.recharge = function (body) {
return callNativeBridge('gameRecharge', body || {});
};
jsBridge.quit = function (body) {
return callNativeBridge('closeGame', body || {});
};
window.JsBridge = jsBridge;
installAlias('recharge', 'gameRecharge');
installAlias('quit', 'closeGame');
nativeBridge.recharge = function (body) {
callNativeBridge('gameRecharge', body || {});
};
nativeBridge.quit = function (body) {
callNativeBridge('closeGame', body || {});
};
nativeBridge.rechargeSuccess = function (body) {
notifyReyouRechargeSuccess(body || {});
};
nativeBridge.updateCoin = function (body) {
notifyReyouRechargeSuccess(body || {});
callNativeBridge('refreshBalance', body || {});
};
}
function callNativeBridge(action, body) {
var config = launchConfig();
var payload = launchPayload();
@ -297,6 +347,7 @@
nativeBridge.debugLog = function (body) {
callNativeBridge('debugLog', body || {});
};
installReyouBridgeAliases(nativeBridge);
window.NativeBridge = nativeBridge;
[

3
game/AGENTS.md Normal file
View File

@ -0,0 +1,3 @@
# game目录为独立的ui样式不依赖外层的公共样式
# api逻辑只依赖 外层common/jsbridge.js 和 api.js 和 params.js
# i18n 使用当前目录的i18n

0
game/README.md Normal file
View File

0
game/jdstb/index.html Normal file
View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 810 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 921 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

View File

@ -0,0 +1,7 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 375 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Group 594">
<g id="Vector">
</g>
<path id="Vector_2" d="M252.5 10H123.5C122.119 10 121 11.1193 121 12.5C121 13.8807 122.119 15 123.5 15H252.5C253.881 15 255 13.8807 255 12.5C255 11.1193 253.881 10 252.5 10Z" fill="var(--fill-0, white)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 428 B

View File

@ -0,0 +1,9 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 375 812" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect id="Rectangle 346254241" width="375" height="812" fill="url(#paint0_linear_0_32)"/>
<defs>
<linearGradient id="paint0_linear_0_32" x1="187.5" y1="0" x2="187.5" y2="812" gradientUnits="userSpaceOnUse">
<stop offset="0.520973" stop-color="#D9D9D9"/>
<stop offset="0.823544" stop-color="#737373" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 523 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View File

@ -0,0 +1,21 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 44 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Union" filter="url(#filter0_d_0_7)">
<path d="M40 7.5L36.4717 11L33.3965 7.9502L4 7.46484L33.4688 6.97656L36.4717 4L40 7.5ZM34.3623 7.5L36.4717 9.59082L38.5801 7.5L36.4717 5.4082L34.3623 7.5Z" fill="url(#paint0_linear_0_7)" shape-rendering="crispEdges"/>
</g>
<defs>
<filter id="filter0_d_0_7" x="0" y="0" width="44" height="15" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.738807 0 0 0 0 0 0 0 0 0 0.0123135 0 0 0 1 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_7"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_7" result="shape"/>
</filter>
<linearGradient id="paint0_linear_0_7" x1="4" y1="7.5" x2="40" y2="7.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFEB99" stop-opacity="0"/>
<stop offset="0.601779" stop-color="#FFEB99"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,21 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 44 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Union" filter="url(#filter0_d_0_4)">
<path d="M40 7.5L36.4717 11L33.3965 7.9502L4 7.46484L33.4688 6.97656L36.4717 4L40 7.5ZM34.3623 7.5L36.4717 9.59082L38.5801 7.5L36.4717 5.4082L34.3623 7.5Z" fill="url(#paint0_linear_0_4)" shape-rendering="crispEdges"/>
</g>
<defs>
<filter id="filter0_d_0_4" x="0" y="0" width="44" height="15" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.738807 0 0 0 0 0 0 0 0 0 0.0123135 0 0 0 1 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_4"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_4" result="shape"/>
</filter>
<linearGradient id="paint0_linear_0_4" x1="4" y1="7.5" x2="40" y2="7.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFEB99" stop-opacity="0"/>
<stop offset="0.601779" stop-color="#FFEB99"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,9 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 73 73" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle id="Ellipse 2727" cx="36.5" cy="36.5" r="36.5" fill="url(#paint0_radial_0_30)"/>
<defs>
<radialGradient id="paint0_radial_0_30" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(37 51) rotate(91.3019) scale(22.0057 38.3878)">
<stop stop-color="#051B6E"/>
<stop offset="1" stop-color="#000630"/>
</radialGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 536 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 515 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 530 KiB

View File

@ -0,0 +1,21 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 351 79" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Vector 2584">
<path d="M0.5 8L8 0.5H343L350.5 8V71L343 78.5H8L0.5 71V8Z" fill="url(#paint0_linear_0_8)"/>
<path d="M0.5 8L8 0.5H343L350.5 8V71L343 78.5H8L0.5 71V8Z" stroke="url(#paint1_linear_0_8)"/>
<path d="M0.5 8L8 0.5H343L350.5 8V71L343 78.5H8L0.5 71V8Z" stroke="url(#paint2_linear_0_8)" stroke-opacity="0.28"/>
</g>
<defs>
<linearGradient id="paint0_linear_0_8" x1="175" y1="0.5" x2="175" y2="71.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#080C28"/>
<stop offset="1" stop-color="#0E102E"/>
</linearGradient>
<linearGradient id="paint1_linear_0_8" x1="175" y1="0.5" x2="175" y2="71.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#8A829E" stop-opacity="0.45"/>
<stop offset="1" stop-color="#8A829E" stop-opacity="0.16"/>
</linearGradient>
<linearGradient id="paint2_linear_0_8" x1="44.5" y1="0.499997" x2="45.5" y2="4.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#CEBAFF"/>
<stop offset="1" stop-color="#CEBAFF" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

@ -0,0 +1,22 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="&#230;&#144;&#156;&#231;&#180;&#162; 3" clip-path="url(#clip0_0_4)">
<g id="Vector" filter="url(#filter0_d_0_4)">
<path d="M14.8328 13.8084L12.8218 11.7929C13.5511 10.8435 13.9886 9.65788 13.9886 8.37022C13.9886 5.26508 11.4678 2.74023 8.3711 2.74023C5.27436 2.74023 2.7536 5.2665 2.7536 8.37176C2.7536 11.4769 5.27293 14.0017 8.3711 14.0017C9.67054 14.0017 10.8653 13.5529 11.8185 12.8073L13.825 14.8183C13.9635 14.9571 14.1462 15.028 14.3289 15.028C14.5116 15.028 14.6942 14.9586 14.8328 14.8183C15.1112 14.5393 15.1112 14.0875 14.8328 13.8084ZM4.17817 8.37176C4.17817 6.05508 6.05965 4.16951 8.3711 4.16951C10.6826 4.16951 12.5639 6.05508 12.5639 8.37176C12.5639 10.6884 10.6826 12.574 8.3711 12.574C6.05965 12.574 4.17817 10.6884 4.17817 8.37176Z" fill="var(--fill-0, #7EDCFF)"/>
</g>
</g>
<defs>
<filter id="filter0_d_0_4" x="-1.2464" y="-1.25977" width="20.288" height="20.2878" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.286776 0 0 0 0 0.614521 0 0 0 1 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_4"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_4" result="shape"/>
</filter>
<clipPath id="clip0_0_4">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -0,0 +1,3 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 45 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect id="Rectangle 346254244" width="45" height="28" fill="var(--fill-0, #D9D9D9)"/>
</svg>

After

Width:  |  Height:  |  Size: 263 B

View File

@ -0,0 +1,9 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 45 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect id="Rectangle 346254244" width="45" height="28" fill="url(#paint0_linear_0_7)"/>
<defs>
<linearGradient id="paint0_linear_0_7" x1="45" y1="14" x2="-1.98515e-07" y2="14" gradientUnits="userSpaceOnUse">
<stop stop-color="#D9D9D9" stop-opacity="0"/>
<stop offset="0.23684" stop-color="#737373"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 502 B

View File

@ -0,0 +1,21 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 78 29" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Vector 2584">
<path d="M0.5 5.97887L5.93571 0.5H72.0643L77.5 5.97887V23.0211L72.0643 28.5H5.93571L0.5 23.0211V5.97887Z" fill="url(#paint0_linear_0_23)"/>
<path d="M0.5 5.97887L5.93571 0.5H72.0643L77.5 5.97887V23.0211L72.0643 28.5H5.93571L0.5 23.0211V5.97887Z" stroke="url(#paint1_linear_0_23)"/>
<path d="M0.5 5.97887L5.93571 0.5H72.0643L77.5 5.97887V23.0211L72.0643 28.5H5.93571L0.5 23.0211V5.97887Z" stroke="url(#paint2_linear_0_23)" stroke-opacity="0.28"/>
</g>
<defs>
<linearGradient id="paint0_linear_0_23" x1="33.9043" y1="-1.5" x2="33.9043" y2="12.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#080C28"/>
<stop offset="1" stop-color="#0E102E"/>
</linearGradient>
<linearGradient id="paint1_linear_0_23" x1="33.9043" y1="-1.5" x2="33.9043" y2="12.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#8A829E" stop-opacity="0.45"/>
<stop offset="1" stop-color="#8A829E" stop-opacity="0.16"/>
</linearGradient>
<linearGradient id="paint2_linear_0_23" x1="8.92286" y1="-1.5" x2="9.12524" y2="-0.714091" gradientUnits="userSpaceOnUse">
<stop stop-color="#CEBAFF"/>
<stop offset="1" stop-color="#CEBAFF" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,7 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 24.3307 11.3333" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Battery">
<path id="Border" opacity="0.35" d="M2.66699 0.5H19.333C20.5296 0.5 21.5 1.47038 21.5 2.66699V8.66699C21.4998 9.86346 20.5295 10.833 19.333 10.833H2.66699C1.4705 10.833 0.500175 9.86346 0.5 8.66699V2.66699C0.5 1.47038 1.47039 0.5 2.66699 0.5Z" stroke="var(--stroke-0, white)"/>
<path id="Cap" opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M23.0027 7.66213C23.8074 7.32336 24.3307 6.53526 24.3307 5.66213C24.3307 4.789 23.8074 4.00091 23.0027 3.66213V7.66213V7.66213Z" fill="var(--fill-0, white)"/>
<path id="Capacity" fill-rule="evenodd" clip-rule="evenodd" d="M18.666 1.99872C19.4024 1.99872 19.9993 2.59567 19.9993 3.33205V7.99872C19.9993 8.7351 19.4024 9.33205 18.666 9.33205H3.33268C2.5963 9.33205 1.99935 8.7351 1.99935 7.99872V3.33205C1.99935 2.59567 2.5963 1.99872 3.33268 1.99872H18.666V1.99872Z" fill="var(--fill-0, white)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,3 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 17.0001 11.3317" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="Cellular Connection" fill-rule="evenodd" clip-rule="evenodd" d="M11.331 2.99835C11.8832 2.99835 12.331 3.44607 12.331 3.99835V10.3317C12.331 10.884 11.8832 11.3317 11.331 11.3317H10.331C9.77867 11.3317 9.33096 10.884 9.33096 10.3317V3.99835C9.33096 3.44607 9.77867 2.99835 10.331 2.99835H11.331V2.99835ZM16.0001 0C16.5524 0 17.0001 0.447712 17.0001 1V9.66667C17.0001 10.219 16.5524 10.6667 16.0001 10.6667H15.0001C14.4479 10.6667 14.0001 10.219 14.0001 9.66667V1C14.0001 0.447712 14.4479 0 15.0001 0V0H16.0001V0ZM2 7.00378C2.55229 7.00378 3 7.4515 3 8.00378V10.0038C3 10.5561 2.55229 11.0038 2 11.0038H0.999999C0.447714 11.0038 0 10.5561 0 10.0038V8.00378C0 7.4515 0.447714 7.00378 0.999999 7.00378H2V7.00378ZM6.66177 4.99767C7.21405 4.99767 7.66177 5.44538 7.66177 5.99767V9.99766C7.66177 10.55 7.21405 10.9977 6.66177 10.9977H5.66177C5.10948 10.9977 4.66177 10.55 4.66177 9.99766V5.99767C4.66177 5.44538 5.10948 4.99767 5.66177 4.99767H6.66177V4.99767Z" fill="var(--fill-0, white)"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,3 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 375 44" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="Frame" opacity="0.01" fill-rule="evenodd" clip-rule="evenodd" d="M375 0V44H0V0H375V0Z" fill="var(--fill-0, white)"/>
</svg>

After

Width:  |  Height:  |  Size: 305 B

View File

@ -0,0 +1,3 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 15.3333 11.0067" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="Wifi" fill-rule="evenodd" clip-rule="evenodd" d="M9.99304 8.66064C9.99127 8.57386 9.95373 8.49166 9.8893 8.43345C8.60864 7.35118 6.733 7.35118 5.45234 8.43345C5.38786 8.49162 5.35027 8.57379 5.34843 8.66057C5.34659 8.74735 5.38068 8.83104 5.44263 8.89188L7.44827 10.9139C7.50705 10.9733 7.5872 11.0067 7.67082 11.0067C7.75444 11.0067 7.83458 10.9733 7.89337 10.9139L9.89867 8.89188C9.96067 8.83108 9.99482 8.74742 9.99304 8.66064V8.66064ZM13.6438 4.67028C13.7652 4.78852 13.9593 4.78703 14.0789 4.66693L15.2395 3.4966C15.3 3.43569 15.3338 3.35318 15.3333 3.26733C15.3328 3.18148 15.2981 3.09937 15.2368 3.03917C11.0049 -1.01306 4.32858 -1.01306 0.0966678 3.03917C0.0353653 3.09933 0.00057401 3.18141 6.67831e-06 3.26726C-0.000545321 3.35311 0.0331419 3.43564 0.0936471 3.4966L1.25459 4.66693C1.3741 4.78721 1.56831 4.7887 1.68966 4.67028C3.30222 3.13859 5.44213 2.28447 7.66707 2.28448C9.89181 2.28457 12.0315 3.13869 13.6438 4.67028V4.67028ZM10.9782 7.36722C11.1007 7.48356 11.2938 7.48104 11.4132 7.36153L12.5725 6.1912C12.6336 6.12982 12.6674 6.04654 12.6665 5.96001C12.6657 5.87347 12.6301 5.7909 12.5678 5.73077C9.80866 3.16636 5.53574 3.16636 2.77658 5.73077C2.71425 5.7909 2.67869 5.87351 2.67787 5.96008C2.67706 6.04664 2.71106 6.12991 2.77223 6.1912L3.93117 7.36153C4.05063 7.48104 4.24368 7.48356 4.36623 7.36722C5.2717 6.54799 6.44949 6.09407 7.67102 6.09357C8.89337 6.09349 10.0721 6.54745 10.9782 7.36722V7.36722Z" fill="var(--fill-0, white)"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 951 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 468 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 530 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 471 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 763 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 669 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

1370
game/touzi/index.html Normal file

File diff suppressed because it is too large Load Diff

0
recharge/index.html Normal file
View File