Help
RSS
API
Feed
Maltego
Contact
Domain > gg.instantfunhub.click
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-10-23
13.33.67.8
(
ClassC
)
2025-12-03
18.161.6.45
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyServer: CloudFrontDate: Wed, 03 Dec 2025 15:12:58 GMTContent-Type: text/htmlContent-Length: 167Connection: keep-aliveLocation: https://gg.instantfunhub.click/X-Cache: Redirect from cloudfrontVia: 1.1 59456abf79b201034ab5c9cfef7355e2.cloudfront.net (CloudFront)X-Amz-Cf-Pop: HIO52-P1X-Amz-Cf-Id: gzc52b4U0wArXN4Erq50k8uur_rgBTUVl4dK-gBt2cFRBhXfOVi0Nw html>head>title>301 Moved Permanently/title>/head>body>center>h1>301 Moved Permanently/h1>/center>hr>center>CloudFront/center>/body>/html>
Port 443
HTTP/1.1 200 OKContent-Type: text/htmlContent-Length: 17658Connection: keep-aliveDate: Wed, 03 Dec 2025 15:12:58 GMTAccept-Ranges: bytesServer: nginx/1.22.0Last-Modified: Thu, 18 Sep 2025 10:30:34 GMTETag: 68cbdf4a-44faExpires: Wed, 03 Dec 2025 15:12:59 GMTCache-Control: max-age1Cache-Control: no-cacheVary: Accept-EncodingX-Cache: Miss from cloudfrontVia: 1.1 02f1a759e4ec9fab6fc17c080dd851dc.cloudfront.net (CloudFront)X-Amz-Cf-Pop: HIO52-P1X-Amz-Cf-Id: Y9xLG97ZhxxBOomrUYGfVzud2_T3CxXIAmSljpX7N_E9-UniWgl9Ag !DOCTYPE html>html langen>head> meta charsetUTF-8 /> meta nameviewport contentwidthdevice-width, initial-scale1.0 /> link relshortcut icon href./assets/logo.png /> title>Instantfunhub/title> meta namekeywords content /> meta namedescription content /> !-- 优化关键CSS的加载 --> style> /* 关键CSS直接内联 */ body { margin: 0; padding: 0; background: var(--body); color: var(--font); font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif; } #app { display: none; } #skeleton { display: block; } /style> !-- 预加载关键资源 --> link relpreconnect hrefhttps://static.starxmi.com crossorigin /> link reldns-prefetch hrefhttps://static.starxmi.com /> !-- 预加载剩余CSS --> link relpreload href./styles.css asstyle onloadthis.onloadnull;this.relstylesheet /> !-- 添加预加载关键资源 --> link relpreload href./assets/logo.png asimage fetchpriorityhigh /> !-- 使用defer属性优化脚本加载 --> script src./js/tailwind.js defer>/script> script src./js/game/indexGameData.js defer>/script> script src./js/lazyload.js defer>/script> script src./js/main.js defer>/script> !-- 内联关键JavaScript --> script> // 优化骨架屏和内容显示逻辑 function hideSkeleton() { const skeleton document.getElementById(skeleton); const app document.getElementById(app); if (skeleton && app) { // 确保过渡效果 skeleton.style.transition opacity 0.5s ease-out; app.style.transition opacity 0.5s ease-in; // 立即设置骨架屏透明,app显示 skeleton.style.opacity 0; app.style.display block; app.style.opacity 1; // 等待过渡完成后完全隐藏骨架屏 setTimeout(() > { skeleton.style.display none; }, 500); } } // 检查资源是否加载完成 function checkResources() { // 检查游戏数据是否加载完成(CSS通过onload处理) const gamesLoaded typeof games ! undefined && games.list && games.list.length > 0; // 当数据加载完成时隐藏骨架屏 if (gamesLoaded) { hideSkeleton(); } else { // 未加载完成,继续检查,但增加延迟时间减少CPU使用 setTimeout(checkResources, 200); } } // 页面加载时立即开始检查资源 document.addEventListener(DOMContentLoaded, function () { checkResources(); // 设置最大超时时间(3秒),确保骨架屏最终会隐藏 setTimeout(() > { const skeleton document.getElementById(skeleton); if (skeleton && (skeleton.style.display block || skeleton.style.opacity 1)) { hideSkeleton(); } }, 3000); }); /script> !-- 剩余CSS移到这里 --> style> /* 为游戏卡片容器添加明确的尺寸约束和过渡效果 */ #bestLikeGames, #hotPicks, #popular { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; padding: 0.75rem 0; min-height: 200px; /* 添加最小高度避免布局塌陷 */ } /* 优化游戏卡片的尺寸和加载行为 */ .gamecards { aspect-ratio: 4/3 !important; width: 100%; overflow: hidden; position: relative; border-radius: 8px; background-color: #f0f0f0; /* 加载前显示背景色 */ } /* 图片加载优化 */ .gamecards img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease-in-out; opacity: 0; } /* 图片加载完成后显示 */ .gamecards img.loaded { opacity: 1; } /* 响应式布局优化 */ @media (max-width: 768px) { #bestLikeGames { grid-template-columns: repeat(3, 1fr); } #hotPicks { grid-template-columns: repeat(2, 1fr); } #popular { grid-template-columns: 1fr; } .skeleton-body { max-width: 100%; } } /* 为内容区域添加最大宽度约束 */ main { max-width: 1200px; margin: 0 auto; width: 100%; } /* 页脚区域优化 */ footer { margin-top: 2rem; padding: 1rem 0; width: 100%; position: relative; clear: both; background: var(--footer); } /* 确保页脚文本不会导致布局偏移 */ .des-font { font-size: 0.875rem; line-height: 1.5; max-width: 100%; overflow-wrap: break-word; } body { line-height: 1.6; min-height: 100vh; margin: 0; color: var(--font); background: var(--body); } /* 骨架屏样式修复 */ .skeleton-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #fff; z-index: 9999; display: flex; flex-direction: column; overflow: hidden; } .skeleton-body { flex: 1; display: flex; flex-direction: column; width: 100%; max-width: 576px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; } .skeleton-nav { height: 90px; background-color: #e0e0e0; margin-bottom: 10px; display: flex; align-items: center; padding: 0 20px; } .skeleton-logo { width: 40px; height: 40px; background-color: #bdbdbd; border-radius: 8px; margin-right: 15px; } .skeleton-title { width: 120px; height: 24px; background-color: #bdbdbd; border-radius: 4px; } .skeleton-content { flex: 1; overflow-y: auto; } .skeleton-section { margin-bottom: 12px; } .skeleton-section-header { height: 55px; background-color: #e0e0e0; margin-bottom: 15px; border-radius: 8px; } .skeleton-game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; } .skeleton-game-card { height: 90px; background-color: #e0e0e0; border-radius: 8px; } .skeleton-section-two-game-card { height: 137px; } .skeleton-section-three-game-card { height: 280px; } .skeleton-game-grid-2 { grid-template-columns: repeat(2, 1fr); } .skeleton-game-grid-1 { grid-template-columns: 1fr; } .skeleton-footer { height: 620px; background-color: #e0e0e0; margin-top: 20px; border-radius: 8px; } /* 骨架屏动画 */ @keyframes shimmer { 0% { background-position: -1000px 0; } 100% { background-position: 1000px 0; } } .skeleton-nav, .skeleton-section-header, .skeleton-game-card, .skeleton-footer, .skeleton-logo, .skeleton-title { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 1000px 100%; animation: shimmer 2s infinite linear; } .fx-r { display: flex; flex-direction: row; } .fx-bc { align-items: center; } .navbar { justify-content: space-between; } .navLogo { width: 50px; aspect-ratio: 1/1; } .navsearch { width: 30px; aspect-ratio: 1/1; cursor: pointer; } .navtitle { font-size: 24px; font-weight: bold; color: white; } .section-heading { background: rgba(0, 0, 0, 0.2); padding: 0.8rem; border-radius: 8px; margin: 0.2rem 0; display: flex; justify-content: space-between; } .section-heading h2 { margin: 0; font-size: 1.2rem; color: white; } .gamecards { cursor: pointer; aspect-ratio: 4/3; } .gamecards img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; } .p-5 { padding: 20px; } .md\:max-w-xl { max-width: 576px; } .md\:p-0 { padding: 0px; } .mx-auto { margin-left: auto; margin-right: auto; } /* 定义全局滚动条样式 */ ::-webkit-scrollbar { width: 6px; height: 6px; } ::-webkit-scrollbar-track { border-radius: 4px; background: #f1f1f1; } ::-webkit-scrollbar-thumb { border-radius: 4px; background: #c1c1c1; } ::-webkit-scrollbar-thumb:hover { background: #a8a8a8; } /style> !-- Google tag (gtag.js) --> script async srchttps://www.googletagmanager.com/gtag/js?idG-ZK6W05MB9L>/script> script> window.dataLayer window.dataLayer || ; function gtag() { dataLayer.push(arguments); } gtag(js, new Date()); gtag(config, G-ZK6W05MB9L); /script> script async srchttps://securepubads.g.doubleclick.net/tag/js/gpt.js crossoriginanonymous>/script> !-- Anchor --> script> window.googletag window.googletag || { cmd: }; let anchorSlot; googletag.cmd.push(() > { anchorSlot googletag.defineOutOfPageSlot( /23271452660/gg.instantfunhub.click.anchor.250911, document.body.clientWidth 500 ? googletag.enums.OutOfPageFormat.TOP_ANCHOR : googletag.enums.OutOfPageFormat.BOTTOM_ANCHOR ); if (anchorSlot) { anchorSlot.addService(googletag.pubads()); } googletag.pubads().enableSingleRequest(); googletag.enableServices(); if (anchorSlot) { googletag.display(anchorSlot); } }); /script> !-- Interstitial --> script> window.googletag window.googletag || { cmd: }; let interstitialSlot; googletag.cmd.push(() > { interstitialSlot googletag.defineOutOfPageSlot(/23271452660/gg.instantfunhub.click.interstitial.250911, googletag.enums.OutOfPageFormat.INTERSTITIAL); if (interstitialSlot) { interstitialSlot.addService(googletag.pubads()).setConfig({ interstitial: { triggers: { navBar: true, unhideWindow: true } } }); } googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); /script> !-- banner1 --> script> window.googletag window.googletag || { cmd: }; googletag.cmd.push(function () { googletag.defineSlot(/23271452660/gg.instantfunhub.click.banner1.250911, 300, 250, div-gpt-ad-1757581335544-0).addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); /script> !-- banner2 --> script> window.googletag window.googletag || { cmd: }; googletag.cmd.push(function () { googletag.defineSlot(/23271452660/gg.instantfunhub.click.banner2.250911, 300, 250, div-gpt-ad-1757581403499-0).addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); /script>/head>body> !-- 骨架屏 --> div idskeleton classskeleton-container> div classskeleton-body> div classskeleton-nav> div classskeleton-logo>/div> div classskeleton-title>/div> /div> div classskeleton-content> div classskeleton-section> div classskeleton-section-header>/div> div classskeleton-game-grid> div classskeleton-game-card>/div> div classskeleton-game-card>/div> div classskeleton-game-card>/div> div classskeleton-game-card>/div> div classskeleton-game-card>/div> div classskeleton-game-card>/div> /div> /div> div classskeleton-section> div classskeleton-section-header>/div> div classskeleton-game-grid skeleton-game-grid-2> div classskeleton-game-card skeleton-section-two-game-card>/div> div classskeleton-game-card skeleton-section-two-game-card>/div> div classskeleton-game-card skeleton-section-two-game-card>/div> div classskeleton-game-card skeleton-section-two-game-card>/div> div classskeleton-game-card skeleton-section-two-game-card>/div> div classskeleton-game-card skeleton-section-two-game-card>/div> div classskeleton-game-card skeleton-section-two-game-card>/div> div classskeleton-game-card skeleton-section-two-game-card>/div> /div> /div> div classskeleton-section> div classskeleton-section-header>/div> div classskeleton-game-grid skeleton-game-grid-1> div classskeleton-game-card skeleton-section-three-game-card>/div> div classskeleton-game-card skeleton-section-three-game-card>/div> div classskeleton-game-card skeleton-section-three-game-card>/div> div classskeleton-game-card skeleton-section-three-game-card>/div> div classskeleton-game-card skeleton-section-three-game-card>/div> div classskeleton-game-card skeleton-section-three-game-card>/div> /div> /div> div classskeleton-footer>/div> /div> /div> /div> div idapp> !-- 容器 --> div classmx-auto p-5 md:p-0 md:max-w-xl fx-h fx-ac> !-- 顶部 --> div classgap-3 py-4 fx-r fx-bc navbar> div classgap-3 cursor-pointer fx-r fx-bc> img classnavLogo src./assets/logo.png altInstantfunhub Logo /> div classfont-bold text-white navtitle>Instantfunhub/div> /div> div> img classnavsearch src./assets/search.png altInstantfunhub Search Icon /> /div> /div> !-- 内容 --> main> !-- /23271452660/gg.instantfunhub.click.banner1.250911 --> div classfx-r fx-ac fx-bc> div iddiv-gpt-ad-1757581335544-0 stylemin-width: 300px; min-height: 250px;> script> googletag.cmd.push(function () { googletag.display(div-gpt-ad-1757581335544-0); }); /script> /div> /div> !-- Best Like Games --> div classjustify-between fx-r fx-bc section-heading> h2>Best Like Games/h2> img src./assets/more.png altMenu width24 height24 /> /div> div classgap-2 game-grid grid grid-cols-3 py-3 idbestLikeGames aria-livepolite> !-- 游戏列表将通过 JS 动态生成 --> /div> div classfx-r fx-ac fx-bc> !-- /23271452660/gg.instantfunhub.click.banner2.250911 --> div iddiv-gpt-ad-1757581403499-0 stylemin-width: 300px; min-height: 250px;> script> googletag.cmd.push(function () { googletag.display(div-gpt-ad-1757581403499-0); }); /script> /div> /div> !-- Hot Picks --> div classjustify-between fx-r fx-bc section-heading> h2>Hot Picks/h2> img src./assets/more.png altMenu width24 height24 /> /div> div classgap-3 game-grid grid grid-cols-2 py-3 idhotPicks aria-livepolite> !-- 游戏列表将通过 JS 动态生成 --> /div> !-- Popular --> div classjustify-between fx-r fx-bc section-heading> h2>Popular/h2> img src./assets/more.png altMenu width24 height24 /> /div> div classgap-2 game-grid grid grid-cols-1 py-3 idpopular aria-livepolite> !-- 游戏列表将通过 JS 动态生成 --> /div> /main> !-- 页脚 --> footer classmb-10 md:mb-20> div classdes> div classdes-tit>About Instantfunhub/div> h3>Free online mini games/h3> div classdes-font> Instantfunhub has the richest collection of free online games, ranging from single player casual to multiplayer collaboration, committed to providing you with the most fun gaming experience. Open games to enjoy all games without the need for downloading, logging in, or pop-up interference. Our game supports various operating environments such as desktop computers, tablets, and mobile devices. Whether at home or on the side of the road waiting for a car, you can enjoy the fun of games through games. Every month, a large number of players from all over the world play their favorite games on Instantfunhub. /div> /div> div classmx-auto px-4 container> div classflex md:flex-row flex-col justify-between items-center space-y-4 md:space-y-0> ul classflex md:flex-row flex-col md:space-x-6 space-y-2 md:space-y-0 mx-auto> li> a href./PrivacyPolicy/index.html>Privacy Policy/a> /li> li>a href./TermsOfUse/index.html>Terms of Use/a>/li> li>a href./ContactUs/index.html>Contact Us/a>/li> /ul> /div> /div> /footer> /div> /div>/body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]