Skip to content

Instantly share code, notes, and snippets.

@caseycrogers
Created April 9, 2024 08:08
Show Gist options
  • Save caseycrogers/67f1de1c92a21fa6e0aed8ce9abfd119 to your computer and use it in GitHub Desktop.
Save caseycrogers/67f1de1c92a21fa6e0aed8ce9abfd119 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js"
integrity="sha512-CNgIRecGo7nphbeZ04Sc13ka07paqdeTu0WR1IM4kNcpmBAUSHSQX0FslNhTDadL4O5SAGapGt4FodqL8My0mA=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<title>Swipeball</title>
<meta name="description" content="Flex your NBA knowledge in the Dribble Game Mobile App">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://dribblegame.com/install.html">
<meta property="og:type" content="website">
<meta property="og:title" content="Dribble Mobile">
<meta property="og:description" content="Flex your NBA knowledge in the Dribble Game Mobile App">
<meta property="og:image" content="https://dribblegame.com/link_thumbnail_swipeball.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="dribblegame.com">
<meta property="twitter:url" content="https://dribblegame.com/install.html">
<meta name="twitter:title" content="Swipeball">
<meta name="twitter:description" content="Flex your NBA knowledge in the Dribble Game Mobile App">
<meta name="twitter:image" content="https://dribblegame.com/link_thumbnail_swipeball.png">
<link rel="stylesheet" href="/swipeball/styles.css">
<script async defer data-website-id="f8963893-26f9-473d-afdf-8317289655ce"
src="https://umami.dribblegame.com/umami.js"></script>
<script type="module" src="/swipeball/script.js"></script>
<base href="/swipeball/">
<meta name="apple-mobile-web-app-capable" content="no">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- This script adds the flutter initialization JS code -->
<script src="flutter.js" defer></script>
</head>
<body>
<div id="container">
<div id="flutter_host">
<div id="basketball-spinner">
<div class="basketball">
<div class="ball">
<div class="lines"></div>
</div>
<div class="shadow"></div>
</div>
</div>
</div>
<a class="bottom-banner" href="https://dribblegame.com/install?mode=swipeball&redirect=True">
<div id="banner-copy">
Download the App to play more!
</div>
<div id="banner-badges">
<div class="badge" id="app-store-badge">
<img src="../app_store_badge.png" alt="">
</div>
<div class="badge">
<img src="../play_store_badge.png" alt="">
</div>
</div>
</a>
<script>
window.addEventListener('load', function (ev) {
_flutter.loader.loadEntrypoint({
onEntrypointLoaded: async function(engineInitializer) {
let appRunner = await engineInitializer.initializeEngine({
hostElement: document.querySelector("#flutter_host")
});
appRunner.runApp();
}
});
});
</script>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment