mirror of
https://github.com/ReviveMii/website
synced 2025-09-03 20:11:10 +02:00
Add files via upload
This commit is contained in:
parent
cbe7f7ff33
commit
f201b91e12
BIN
assets/Error.mp3
Normal file
BIN
assets/Error.mp3
Normal file
Binary file not shown.
10
css/1.css
10
css/1.css
@ -41,8 +41,10 @@ header .logo-container {
|
|||||||
|
|
||||||
header .logo-img {
|
header .logo-img {
|
||||||
width: 25px;
|
width: 25px;
|
||||||
|
max-width: 25px;
|
||||||
height: auto;
|
height: auto;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
position:relative; top:5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
header .logo span {
|
header .logo span {
|
||||||
@ -93,7 +95,7 @@ header nav a:hover {
|
|||||||
padding: 10px 30px;
|
padding: 10px 30px;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
background-color: #00c2ff;
|
background-color: #34BEED;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@ -137,10 +139,16 @@ p {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
width: 90%;
|
width: 90%;
|
||||||
transition: transform 0.3s ease;
|
transition: transform 0.3s ease;
|
||||||
|
z-index:-10px;
|
||||||
|
}
|
||||||
|
.project-card img {
|
||||||
|
border-radius: 10px;
|
||||||
|
border:2px solid #00c2ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.project-card:hover {
|
.project-card:hover {
|
||||||
transform: translateY(-10px);
|
transform: translateY(-10px);
|
||||||
|
z-index:-10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.project-card img {
|
.project-card img {
|
||||||
|
BIN
imageshare/closeerror.mp3
Normal file
BIN
imageshare/closeerror.mp3
Normal file
Binary file not shown.
BIN
imageshare/error.mp3
Normal file
BIN
imageshare/error.mp3
Normal file
Binary file not shown.
@ -9,7 +9,25 @@
|
|||||||
<meta name="description" content="Use the Nintendo Image Share again!">
|
<meta name="description" content="Use the Nintendo Image Share again!">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<div id="loadicon" style="display:none; width:40px; height:40px; position:fixed;top:8px;left:8px; overflow:hidden;z-index:1050;" >
|
||||||
|
<script>
|
||||||
|
var loadingsfx = new Audio("/15.wav");
|
||||||
|
function startloading() {
|
||||||
|
document.getElementById("loadicon").style.display="block";
|
||||||
|
setTimeout(stoploading,2000); // if page dont load past this point loader stops xD
|
||||||
|
loadingsfx.play();
|
||||||
|
loadingsfx.loop=true;
|
||||||
|
loadingsfx.currentTime = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
function stoploading() {
|
||||||
|
document.getElementById("loadicon").style.display="none";
|
||||||
|
loadingsfx.pause();
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<img src="/wiiloading.gif" style="display:flex; width:40px; height:40px;" id="wiiring" alt="">
|
||||||
|
</div>
|
||||||
|
<header onload="stoploading();">
|
||||||
<div class="logo-container">
|
<div class="logo-container">
|
||||||
<a href="/index.html" class="logo" style="text-decoration: none">
|
<a href="/index.html" class="logo" style="text-decoration: none">
|
||||||
<img src="/favicon.ico" alt="ReviveMii Logo" class="logo-img" style="text-decoration: none">
|
<img src="/favicon.ico" alt="ReviveMii Logo" class="logo-img" style="text-decoration: none">
|
||||||
@ -27,34 +45,40 @@
|
|||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
</script>
|
</script>
|
||||||
<div id="popup" style="display:none; position:fixed; top:50%; left:50%; transform:translate(-50%, -50%); background:white; padding:20px; border:2px solid #333; box-shadow:0 4px 8px rgba(0,0,0,0.1); z-index:1000; width:80%; max-width:500px;">
|
<div id="popup" style="display:none; position:fixed; top:50%; left:50%; transform:translate(-50%, -50%); background:white; padding:20px; border:2px solid #333; box-shadow:0 4px 8px rgba(0,0,0,0.1); z-index:1000; width:80%; max-width:500px; text-align:center;">
|
||||||
<h2>ReviveMii Image Share</h2>
|
<h2 style="color:#323232; border-bottom:2px solid #323232; margin-bottom:3px; text-align:center;">ReviveMii Image Share</h2>
|
||||||
<p>The ReviveMii Image Share is no longer being developed. Please use <a href="http://i.retrosite.org" style="color: blue">i.retrosite.org</a> or <a href="http://theimageshare.com" style="color: blue">theimageshare.com</a>.</p>
|
<p style="text-align:center; color: #b0b0b0; border-bottom:2px solid #323232;">The ReviveMii Image Share service is no longer being developed. <br> Please use <a href="http://i.retrosite.org" style="color: blue" target="_blank">i.retrosite.org</a> or <a href="http://theimageshare.com" style="color: blue" target="_blank">theimageshare.com</a>.</p>
|
||||||
<button onclick="closePopup()" style=" background-color:#f44336; color:white; border:none; padding:5px 10px; cursor:pointer; ">Close</button>
|
<button onclick="closePopup()" style=" background-color:#f44336; color:white; border:none; padding:5px 10px; cursor:pointer; ">Close</button>
|
||||||
</div>
|
</div>
|
||||||
<div id="overlay" style="display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:999;"></div>
|
<div id="overlay" style="opacity:0%; display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:999; transition:.3s ease-in-out;"></div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
window.onload = function() {
|
window.onload = function() {
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
document.getElementById('popup').style.display = 'block';
|
document.getElementById('popup').style.display = 'block';
|
||||||
|
var err3ds = new Audio("/imageshare/error.mp3");
|
||||||
|
err3ds.play();
|
||||||
document.getElementById('overlay').style.display = 'block';
|
document.getElementById('overlay').style.display = 'block';
|
||||||
}, 1000);
|
document.getElementById('overlay').style.opacity="100%";
|
||||||
|
}, 800);
|
||||||
};
|
};
|
||||||
|
|
||||||
function closePopup() {
|
function closePopup() {
|
||||||
document.getElementById('popup').style.display = 'none';
|
document.getElementById('popup').style.display = 'none';
|
||||||
|
var err3ds2 = new Audio("/imageshare/closeerror.mp3");
|
||||||
|
err3ds2.play();
|
||||||
document.getElementById('overlay').style.display = 'none';
|
document.getElementById('overlay').style.display = 'none';
|
||||||
|
document.getElementById('overlay').style.opacity="0%";
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<section class="project-hero" id="p">
|
<section class="project-hero" id="p" style="margin-bottom:-34px;">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>ReviveMii Image Transfer</h1>
|
<h1>ReviveMii Image Transfer</h1>
|
||||||
<p>A Revival for the Nintendo Image Share on 3ds and Wii U</p>
|
<p>A Revival for the Nintendo Image Share on 3ds and Wii U</p>
|
||||||
<button class="cta" onclick="location.href='#p'">Learn More</button>
|
<button class="cta" onclick="location.href='#p'">Learn More</button>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
<hr style=" position:relative; top:20px; width:95%; margin:auto;">
|
||||||
<section class="project-details">
|
<section class="project-details">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="project-description">
|
<div class="project-description">
|
||||||
@ -76,17 +100,18 @@
|
|||||||
<li>• 3. Scan the QR Code with your Smart Phone or type the URL in your Computer</li>
|
<li>• 3. Scan the QR Code with your Smart Phone or type the URL in your Computer</li>
|
||||||
<li>• 4. Download it</li>
|
<li>• 4. Download it</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h1 style="color: green">You now successfully transferred an Image from your Wii U/3DS to your Device!</h1>
|
<hr style="margin-top:5px;">
|
||||||
|
<h1 style="color: green; text-align:center;">You now successfully transferred an Image from your Wii U/3DS to your Device!</h1>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<footer>
|
<footer>
|
||||||
<p>© 2024 ReviveMii.</p>
|
<p>© 2024 ReviveMii.</p>
|
||||||
<p><a href="/index.html#end">More Links in Home Footer</a><p>
|
<p onclick="startloading();"><a href="/index.html#end">More Links in Home Footer</a><p>
|
||||||
<p><a href="/contact.html">Contact Us</a></p> <p><a href="/feedback.html">Feedback</a></p>
|
<p onclick="startloading();"><a href="/contact.html">Contact Us</a></p> <p><a href="/feedback.html">Feedback</a></p>
|
||||||
<p><a href="/discord-redirect.html">Join Discord</a></p>
|
<p onclick="startloading();"><a href="/discord-redirect.html">Join Discord</a></p>
|
||||||
<p><a href="https://github.com/ReviveMii/">GitHub</a></p>
|
<p onclick="startloading();"><a href="https://github.com/ReviveMii/">GitHub</a></p>
|
||||||
<p><a href="https://youtube.com/@revivemii">YouTube</a></p>
|
<p onclick="startloading();"><a href="https://youtube.com/@revivemii">YouTube</a></p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
@ -7,18 +7,37 @@
|
|||||||
<link rel="stylesheet" href="/css/1.css">
|
<link rel="stylesheet" href="/css/1.css">
|
||||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||||
<meta name="description" content="Watch YouTube Videos on your Wii!">
|
<meta name="description" content="Watch YouTube Videos on your Wii!">
|
||||||
|
<audio src="/revivetube/revivetubechannel.mp3" autoplay="" preload></audio>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<div id="loadicon" style="display:none; width:40px; height:40px; position:fixed;top:8px;left:8px; overflow:hidden;z-index:1050;" >
|
||||||
|
<script>
|
||||||
|
var loadingsfx = new Audio("/15.wav");
|
||||||
|
function startloading() {
|
||||||
|
document.getElementById("loadicon").style.display="block";
|
||||||
|
setTimeout(stoploading,2000); // if page dont load past this point loader stops xD
|
||||||
|
loadingsfx.play();
|
||||||
|
loadingsfx.loop=true;
|
||||||
|
loadingsfx.currentTime = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
function stoploading() {
|
||||||
|
document.getElementById("loadicon").style.display="none";
|
||||||
|
loadingsfx.pause();
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<img src="/wiiloading.gif" style="display:flex; width:40px; height:40px;" id="wiiring" alt="">
|
||||||
|
</div>
|
||||||
|
<header onload="stoploading();">
|
||||||
<div class="logo-container">
|
<div class="logo-container">
|
||||||
<a href="/index.html" class="logo" style="text-decoration: none">
|
<a onclick="startloading();" href="/index.html" class="logo" style="text-decoration: none">
|
||||||
<img src="/favicon.ico" alt="ReviveMii Logo" class="logo-img" style="text-decoration: none">
|
<img src="/favicon.ico" alt="ReviveMii Logo" class="logo-img" style="text-decoration: none">
|
||||||
<span>ReviveMii</span>
|
<span>ReviveMii</span>
|
||||||
</a>
|
</a>
|
||||||
</div> <nav>
|
</div> <nav>
|
||||||
<a href="/index.html">Home</a>
|
<a onclick="startloading();"href="/index.html">Home</a>
|
||||||
<a href="/projects.html">Projects</a>
|
<a onclick="startloading();"href="/projects.html">Projects</a>
|
||||||
<a href="/about.html">About</a>
|
<a onclick="startloading();"href="/about.html">About</a>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
<br>
|
<br>
|
||||||
@ -30,27 +49,30 @@
|
|||||||
This website uses cookies. <a href="/wc.html" style="color: blue; text-decoration: underline">What Cookies</a>
|
This website uses cookies. <a href="/wc.html" style="color: blue; text-decoration: underline">What Cookies</a>
|
||||||
<button onclick="acceptCookies()" style="background-color: #4CAF50; color: white; border: none; padding: 10px 20px; cursor: pointer; font-size: 14px; margin-left: 20px;">Accept</button>
|
<button onclick="acceptCookies()" style="background-color: #4CAF50; color: white; border: none; padding: 10px 20px; cursor: pointer; font-size: 14px; margin-left: 20px;">Accept</button>
|
||||||
</div>
|
</div>
|
||||||
<section class="project-hero" id="p">
|
<section class="project-hero" id="p" style="margin-bottom:-34px; ">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>ReviveTube</h1>
|
<h1>ReviveTube</h1>
|
||||||
<p>A Revival for the Youtube Website on the Wii</p>
|
<p>A Revival for the Youtube Website on the Wii</p>
|
||||||
<button class="cta" onclick="location.href='#p'">Learn More</button>
|
<button class="cta" onclick="location.href='#p'">Learn More</button>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
<hr style=" position:relative; top:20px; width:95%; margin:auto;">
|
||||||
<section class="project-details" >
|
<section class="project-details" >
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="project-description">
|
<div class="project-description">
|
||||||
<h2>About the Project</h2>
|
<h2>About the Project</h2>
|
||||||
<p>With ReviveTube you can watch YouTube Videos on your Wii. Without Homebrew! (If you have homebrew on your Wii, we recommend the Homebrew Service RiiTube by RiiConnect24/WiiLink, because it supports fullscreen, and ReviveTube supports no Full Screen at the time <a href="https://rc24.xyz/services/riitube" style="color: blue";>RiiTube (Old RC24) </a><a href="https://www.wiilink24.com/services/riitube/" style="color: blue">RiiTube (WiiLink</a>)</p>
|
<p>With ReviveTube you can watch YouTube Videos on your Wii. Without Homebrew! <br> (If you have homebrew on your Wii, we recommend the Homebrew Service RiiTube by RiiConnect24/WiiLink, because it supports fullscreen, and ReviveTube doesn't support fullscreen at this time) <br> <a href="https://rc24.xyz/services/riitube" target="_blank" onclick="startloading();" style="color: blue";>RiiTube (Old RC24) </a><br><a href="https://www.wiilink24.com/services/riitube/" style="color: blue" target="_blank" onclick="startloading();">RiiTube (WiiLink)</a></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="project-features">
|
<div class="project-features">
|
||||||
<h2>How to setup</h2>
|
<h2>How to setup</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<p>Requirements</p>
|
<p>Requirements</p>
|
||||||
<li>• Internet Channel Version: At least Ver. April 11, 2007 (Open the Wii Shop Channel to update)</li>
|
<li>• Internet Channel Version: At least Ver. April 11, 2007 </li>
|
||||||
<li>• A Wii lol (Info for Dolphin Users: The Loading Screen for ReviveTube is not working on Dolphin, i don't know why)</li>
|
<span style="color:#919191; font-size:14px;">(If you have previously bought the Internet Channel, Go to the Wii Shop Channel, Titles You've Downloaded, and find Internet Channel, then Download or Update it.)</span>
|
||||||
|
|
||||||
|
<li>• A Wii lol</li>
|
||||||
|
<span style="color:#919191; font-size:14px;">(Info for Dolphin Users: The Loading Screen for ReviveTube is not working on Dolphin, i don't know why)</span>
|
||||||
<li>• An Internet Connection</li>
|
<li>• An Internet Connection</li>
|
||||||
<li>• Patience (The Internet Channel is slow)</li>
|
<li>• Patience (The Internet Channel is slow)</li>
|
||||||
</ul><br>
|
</ul><br>
|
||||||
@ -58,19 +80,20 @@
|
|||||||
<li>• 1. Open the Internet Channel</li>
|
<li>• 1. Open the Internet Channel</li>
|
||||||
<li>• 2. Go to http://yt.old.errexe.xyz/ (with http://)</li>
|
<li>• 2. Go to http://yt.old.errexe.xyz/ (with http://)</li>
|
||||||
<li>• 3. (Optional) Save to Bookmarks</li>
|
<li>• 3. (Optional) Save to Bookmarks</li>
|
||||||
<li><strong>Warning: The Website will only search Videos, if you press "Go", "Okay" will not work</strong></li>
|
<li><strong style="color:#ff4a4a;">Warning: The Website will only search Videos, if you press "Go", "Okay" will not work</strong></li>
|
||||||
</ul>
|
</ul>
|
||||||
<h1 style="color: green">Have fun with ReviveTube!</h1>
|
<hr style="margin-top:5px;">
|
||||||
|
<h1 style="color: green; text-align:center;">If you did it properly, Revivetubes website should show up. Have fun with ReviveTube!</h1>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<footer>
|
<footer>
|
||||||
<p>© 2025 ReviveMii</p>
|
<p>© 2025 ReviveMii</p>
|
||||||
<p><a href="/index.html#end">More Links in Home Footer</a><p>
|
<p onclick="startloading();"><a href="/index.html#end">More Links in Home Footer</a><p>
|
||||||
<p><a href="/contact.html">Contact Us</a></p>
|
<p onclick="startloading();"><a href="/contact.html">Contact Us</a></p>
|
||||||
<p><a href="/discord-redirect.html">Join Discord</a></p>
|
<p onclick="startloading();"><a href="/discord-redirect.html">Join Discord</a></p>
|
||||||
<p><a href="https://github.com/ReviveMii/">GitHub</a></p>
|
<p onclick="startloading();"><a href="https://github.com/ReviveMii/">GitHub</a></p>
|
||||||
<p><a href="https://youtube.com/@ReviveMii-Project">YouTube</a></p>
|
<p onclick="startloading();"><a href="https://youtube.com/@ReviveMii-Project">YouTube</a></p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
BIN
revivetube/revivetubechannel.mp3
Normal file
BIN
revivetube/revivetubechannel.mp3
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user