mirror of
https://github.com/2004content/rarbg.git
synced 2026-01-26 10:28:01 -08:00
Compare commits
4 Commits
8f488e3bd4
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
41f6f068da | ||
|
|
bd23e160d2 | ||
|
|
7fc5a9afb4 | ||
|
|
4e08b51d9e |
67440
search/bluray.html
67440
search/bluray.html
File diff suppressed because it is too large
Load Diff
@@ -1,92 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<style>
|
|
||||||
body {
|
|
||||||
font-family: Arial, sans-serif;
|
|
||||||
}
|
|
||||||
.search-bar {
|
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
|
||||||
.link {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
.loading-screen {
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
background-color: white;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
transition: opacity 1s ease;
|
|
||||||
z-index: 1000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.loading-screen.hidden {
|
|
||||||
opacity: 0;
|
|
||||||
visibility: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.loading-spinner {
|
|
||||||
border: 16px solid #f3f3f3;
|
|
||||||
border-radius: 50%;
|
|
||||||
border-top: 16px solid blue;
|
|
||||||
width: 120px;
|
|
||||||
height: 120px;
|
|
||||||
animation: spin 2s linear infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes spin {
|
|
||||||
0% { transform: rotate(0deg); }
|
|
||||||
100% { transform: rotate(360deg); }
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="loading-screen" class="loading-screen">
|
|
||||||
<div class="loading-spinner"></div>
|
|
||||||
</div>
|
|
||||||
<input type="text" id="search-bar" class="search-bar" placeholder="Search for a link...">
|
|
||||||
<button onclick="window.location.href='web.html'">Load Movies WebRip links</button>
|
|
||||||
<button onclick="window.location.href='bluray.html'">Load Movies BluRay links</button>
|
|
||||||
<button onclick="window.location.href='showsrarbg.html'">Load RARBG shows links</button>
|
|
||||||
<button onclick="window.location.href='showsother.html'">Load other shows links</button>
|
|
||||||
|
|
||||||
|
|
||||||
<div id="link-list">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
window.addEventListener('load', function() {
|
|
||||||
const loadingScreen = document.getElementById('loading-screen');
|
|
||||||
loadingScreen.classList.add('hidden');
|
|
||||||
});
|
|
||||||
|
|
||||||
const searchBar = document.getElementById('search-bar');
|
|
||||||
const linkList = document.getElementById('link-list');
|
|
||||||
const links = Array.from(linkList.getElementsByClassName('link'));
|
|
||||||
|
|
||||||
searchBar.addEventListener('input', function() {
|
|
||||||
var searchValue = searchBar.value.toLowerCase().replace(/\*/g, '.*');
|
|
||||||
|
|
||||||
var regex = new RegExp(searchValue);
|
|
||||||
for (var i = 0; i < links.length; i++) {
|
|
||||||
var currentLink = links[i];
|
|
||||||
var linkText = currentLink.textContent.toLowerCase();
|
|
||||||
|
|
||||||
if (linkText.match(regex)) {
|
|
||||||
currentLink.style.display = '';
|
|
||||||
} else {
|
|
||||||
currentLink.style.display = 'none';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
35307
search/showsother.html
35307
search/showsother.html
File diff suppressed because it is too large
Load Diff
11792
search/showsrarbg.html
11792
search/showsrarbg.html
File diff suppressed because it is too large
Load Diff
49453
search/web.html
49453
search/web.html
File diff suppressed because it is too large
Load Diff
1700
sorted/3d.txt
Normal file
1700
sorted/3d.txt
Normal file
File diff suppressed because it is too large
Load Diff
2212
sorted/web.hdr.movies.txt
Normal file
2212
sorted/web.hdr.movies.txt
Normal file
File diff suppressed because it is too large
Load Diff
4629
sorted/web.hdr.shows.txt
Normal file
4629
sorted/web.hdr.shows.txt
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user