-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (91 loc) · 2.92 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<title>The Rimvydop App</title>
<style>
/* Center elements */
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
}
.logo {
max-width: 100%; /* Adjust the width as needed */
height: auto;
margin-bottom: 20px; /* Add some space below the logo */
}
.screenshot-container {
display: flex;
align-items: center;
justify-content: center;
}
.screenshot {
max-width: 50%; /* Adjust the width as needed */
height: auto;
}
/* Center text and links */
.button-container {
display: flex;
justify-content: center;
margin-top: 20px; /* Adjust spacing as needed */
}
.download-button {
background-color: #FF0000; /* Red color */
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 0 10px; /* Adjust spacing as needed */
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.download-button:hover {
background-color: #CC0000; /* Darker red on hover */
}
</style>
</head>
<body>
<!-- The Rimvydop App's logo -->
<img src="rimvydop-logo.png" alt="Rimvydop App Logo" class="logo">
<!-- Screenshot gallery -->
<div class="screenshot-container">
<button onclick="previousSlide()">❮</button>
<img class="screenshot" src="image-4.png" alt="Screenshot 1">
<img class="screenshot" src="image-5.png" alt="Screenshot 2">
<img class="screenshot" src="image-6.png" alt="Screenshot 3">
<button onclick="nextSlide()">❯</button>
</div>
<p></p>
<h3>Download for Windows (Latest)</h3>
<div class="button-container">
<a href="https://github.com/SLXUniverse/TheRimvydopApp/releases/download/v0.6/TheRimvydopApp-Windows.exe" download class="download-button">64-bit</a>
</div>
<p></p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/HGEy5vp7w3c?si=LZ0Fq_B_s3OxENoO" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<script>
let currentSlide = 0;
const screenshots = document.querySelectorAll('.screenshot');
function showSlide() {
screenshots.forEach(screenshot => screenshot.style.display = 'none');
screenshots[currentSlide].style.display = 'block';
}
function previousSlide() {
currentSlide = (currentSlide === 0) ? (screenshots.length - 1) : (currentSlide - 1);
showSlide();
}
function nextSlide() {
currentSlide = (currentSlide === screenshots.length - 1) ? 0 : (currentSlide + 1);
showSlide();
}
showSlide();
</script>
</body>
</html>