Skip to content

Commit efe429b

Browse files
authored
Merge pull request #129 from ilikepizza107/main
Site updates for end of Jan
2 parents b07db96 + 1ad091d commit efe429b

File tree

5 files changed

+254
-33
lines changed

5 files changed

+254
-33
lines changed

Calendar/Calendar.js

Lines changed: 135 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5561,7 +5561,7 @@ function showCalendar(month, year) {
55615561
link.appendChild(image);
55625562
cell.appendChild(link);
55635563

5564-
// Pissmas 6 day 2 + PP14 + GOD2
5564+
// Pissmas 6 day 2 + PP14 + GOD2 + SCP Dec
55655565
} else if (month === 11 && date === 6 && year === 2025) {
55665566
const events = [
55675567
{
@@ -5576,6 +5576,10 @@ function showCalendar(month, year) {
55765576
{
55775577
link: "https://www.start.gg/tournament/the-good-ol-days-2-a-dirtboy-christmas-special/details",
55785578
imageSrc: "https://images.start.gg/images/tournament/852046/image-326481f986ae50a8bf3426e999ff1a53.png"
5579+
},
5580+
{
5581+
link: "https://www.start.gg/tournament/smash-cafe-plus-the-december-monthly-22/details",
5582+
imageSrc: "https://images.start.gg/images/tournament/857860/image-3a47ae56f0572834cadeeb56270a14df.png"
55795583
}
55805584

55815585

@@ -5811,21 +5815,65 @@ function showCalendar(month, year) {
58115815
link.appendChild(image);
58125816
cell.appendChild(link);
58135817

5814-
// Get Outplayed 9
5815-
} else if ((month === 0 && date === 17 && year === 2026)) {
5816-
// Example link with image
5818+
// Get Outplayed 9 + MM Winter '26
5819+
} else if ((month === 0 && date === 31 && year === 2026)) {
5820+
const events = [
5821+
{
5822+
link: "https://www.start.gg/tournament/get-outplayed-9/details",
5823+
imageSrc: "https://images.start.gg/images/tournament/864902/image-68b7df2019e573705b541192fad00a3b.png"
5824+
5825+
},
5826+
{
5827+
link: "https://www.start.gg/tournament/mahtay-melee-winter-26-edition/details",
5828+
imageSrc: "https://images.start.gg/images/tournament/863499/image-45acb75418444796356138f20b59b114.png"
5829+
}
5830+
5831+
];
5832+
let currentIndex = 0; // Initialize current index
5833+
58175834
let link = document.createElement("a");
5818-
link.href = "https://www.start.gg/tournament/solarpowered-blackout/details";
58195835
link.target = "_blank";
58205836

58215837
let image = document.createElement("img");
5822-
image.src = "https://images.start.gg/images/tournament/863219/image-d4257a618b9f740a0407de02fea07eb9.jpg";
58235838

58245839
image.classList.add("calendarImg");
58255840

5826-
58275841
link.appendChild(image);
58285842
cell.appendChild(link);
5843+
5844+
// Function to fade in/out the image and link
5845+
function fadeInOut(element) {
5846+
let opacity = 0;
5847+
let increasing = true;
5848+
let interval = setInterval(function() {
5849+
if (increasing) {
5850+
opacity += 0.05;
5851+
} else {
5852+
opacity -= 0.05;
5853+
}
5854+
element.style.opacity = opacity;
5855+
if (opacity >= 1) {
5856+
increasing = false;
5857+
setTimeout(() => {
5858+
increasing = true;
5859+
updateLinkAndImage(); // Update link and image after fully visible
5860+
}, 2000); // Image and link will be fully visible for 2 seconds before fading out
5861+
} else if (opacity <= 0) {
5862+
clearInterval(interval);
5863+
fadeInOut(element); // Restart the fading animation
5864+
}
5865+
}, 100); // Adjust the timing as needed
5866+
}
5867+
5868+
// Function to update the link and image
5869+
function updateLinkAndImage() {
5870+
link.href = events[currentIndex].link;
5871+
image.src = events[currentIndex].imageSrc;
5872+
currentIndex = (currentIndex + 1) % events.length; // Move to the next event, looping back to the beginning if necessary
5873+
}
5874+
5875+
updateLinkAndImage(); // Initially update link and image
5876+
fadeInOut(image); // Start fade-in/out animation // Start cycling events
58295877

58305878
//PSM IV
58315879
} else if (month === 1 && date === 1 && year === 2026) {
@@ -5840,6 +5888,22 @@ function showCalendar(month, year) {
58405888
image.classList.add("calendarImg");
58415889

58425890

5891+
link.appendChild(image);
5892+
cell.appendChild(link);
5893+
5894+
// PP16
5895+
} else if (month === 1 && date === 7 && year === 2026) {
5896+
// Example link with image
5897+
let link = document.createElement("a");
5898+
link.href = "https://www.start.gg/tournament/pico-plus-16/details";
5899+
link.target = "_blank";
5900+
5901+
let image = document.createElement("img");
5902+
image.src = "https://images.start.gg/images/tournament/874014/image-4b8b29a313fa02abe178bc7edbda0922.png";
5903+
5904+
image.classList.add("calendarImg");
5905+
5906+
58435907
link.appendChild(image);
58445908
cell.appendChild(link);
58455909

@@ -5873,6 +5937,22 @@ function showCalendar(month, year) {
58735937
image.classList.add("calendarImg");
58745938

58755939

5940+
link.appendChild(image);
5941+
cell.appendChild(link);
5942+
5943+
// Take Flight '26
5944+
} else if (month === 2 && date === 28 && year === 2026) {
5945+
// Example link with image
5946+
let link = document.createElement("a");
5947+
link.href = "https://www.start.gg/tournament/take-flight-26/details";
5948+
link.target = "_blank";
5949+
5950+
let image = document.createElement("img");
5951+
image.src = "https://images.start.gg/images/tournament/864665/image-9551083e30bca6b48e9a64d778db43a2.jpg";
5952+
5953+
image.classList.add("calendarImg");
5954+
5955+
58765956
link.appendChild(image);
58775957
cell.appendChild(link);
58785958

@@ -5889,6 +5969,22 @@ function showCalendar(month, year) {
58895969
image.classList.add("calendarImg");
58905970

58915971

5972+
link.appendChild(image);
5973+
cell.appendChild(link);
5974+
5975+
// Volan 26
5976+
} else if (month === 3 && (date === 10 || date === 11 || date ===12) && year === 2026) {
5977+
// Example link with image
5978+
let link = document.createElement("a");
5979+
link.href = "https://www.start.gg/tournament/volan-2026/details";
5980+
link.target = "_blank";
5981+
5982+
let image = document.createElement("img");
5983+
image.src = "https://images.start.gg/images/tournament/841158/image-2cc3597d9d558d105a4406a7ed422903.png";
5984+
5985+
image.classList.add("calendarImg");
5986+
5987+
58925988
link.appendChild(image);
58935989
cell.appendChild(link);
58945990

@@ -5906,6 +6002,38 @@ function showCalendar(month, year) {
59066002
image.classList.add("calendarImg");
59076003

59086004

6005+
link.appendChild(image);
6006+
cell.appendChild(link);
6007+
6008+
// HoP 25
6009+
} else if (month === 3 && (date === 25) && year === 2026) {
6010+
// Example link with image
6011+
let link = document.createElement("a");
6012+
link.href = "https://www.start.gg/tournament/house-of-paign-25/details";
6013+
link.target = "_blank";
6014+
6015+
let image = document.createElement("img");
6016+
image.src = "https://images.start.gg/images/tournament/864395/image-d48ee13c8ec71aa4cd3a8b6da0e35c4a.png";
6017+
6018+
image.classList.add("calendarImg");
6019+
6020+
6021+
link.appendChild(image);
6022+
cell.appendChild(link);
6023+
6024+
// Smash Camp Heartlands
6025+
} else if (((month === 4 && date >= 29 && date <= 31) || (month === 5 && date === 1)) && year === 2026) {
6026+
// Example link with image
6027+
let link = document.createElement("a");
6028+
link.href = "https://www.start.gg/tournament/smash-camp-heartlands/details";
6029+
link.target = "_blank";
6030+
6031+
let image = document.createElement("img");
6032+
image.src = "https://images.start.gg/images/tournament/848016/image-ad81fb6d62d51b7553360cac9de398bd.png";
6033+
6034+
image.classList.add("calendarImg");
6035+
6036+
59096037
link.appendChild(image);
59106038
cell.appendChild(link);
59116039

index js/indexEventsList.js

Lines changed: 67 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -117,28 +117,6 @@ eventName.appendChild(location);
117117
// Sample event data (replace this with actual event data)
118118
const eventsData = [
119119

120-
{
121-
name: "Blacklisted 9: Blacklisted Forever",
122-
date: "1/10/26 - 1/11/26",
123-
location: "Waltham, MA, USA",
124-
description: "As tournaments once again fall into the shadows, it shows that we are truly Blacklisted Forever. Blacklisted 9 will be running both Doubles and Singles brackets with the greatest talent from past and present. This is the final tournament that will be run by Motobug and the final tournament in the Blacklisted series - don't miss out on this historic event!",
125-
imageUrl: "https://images.start.gg/images/tournament/681909/image-c043212981c638b1eaf4cef1bb2c5363.png",
126-
link: "https://www.start.gg/tournament/blacklisted-9-blacklisted-forever/details",
127-
rankImg: true,
128-
trailer: "https://www.youtube.com/watch?v=q0z5bPfY948",
129-
stream: "https://www.twitch.tv/projectmnexus"
130-
},
131-
{
132-
name: "SOLARPOWERED: BLACKOUT",
133-
date: "1/17/26",
134-
location: "Plano, TX, USA",
135-
description: "Welcome to SOLARPOWERED: BLACKOUT",
136-
imageUrl: "https://images.start.gg/images/tournament/863219/image-d4257a618b9f740a0407de02fea07eb9.jpg",
137-
link: "https://www.start.gg/tournament/solarpowered-blackout/details",
138-
rankImg: false,
139-
trailer: "",
140-
stream: ""
141-
},
142120
{
143121
name: "Get Outplayed 9",
144122
date: "1/31/26",
@@ -150,6 +128,17 @@ const eventsData = [
150128
trailer: "",
151129
stream: ""
152130
},
131+
{
132+
name: "Mahtay Melee - Winter '26 Edition",
133+
date: "1/31/26",
134+
location: "St. Catharines, ON, Canada",
135+
description: "Make the drive to Niagara on Saturday, January 31st for the second edition of Mahtay Melee, a one-day tournament hosted in an amazing community-focused venue, the Mahtay Café & Lounge in St. Catharines, ON. Come enjoy a day of melee, coffee, and drinks at the Mahtay!",
136+
imageUrl: "https://images.start.gg/images/tournament/863499/image-45acb75418444796356138f20b59b114.png",
137+
link: "https://www.start.gg/tournament/mahtay-melee-winter-26-edition/details",
138+
rankImg: false,
139+
trailer: "",
140+
stream: ""
141+
},
153142
{
154143
name: "Pope's Sunday Mass IV",
155144
date: "2/1/26",
@@ -161,14 +150,25 @@ const eventsData = [
161150
trailer: "",
162151
stream: ""
163152
},
153+
{
154+
name: "Pico Plus #16",
155+
date: "2/7/26",
156+
location: "Pico Rivera, California, USA",
157+
description: "Introducing Pico Plus, a brand new Project+ local in the heart of Pico Rivera, CA",
158+
imageUrl: "https://images.start.gg/images/tournament/874014/image-4b8b29a313fa02abe178bc7edbda0922.png",
159+
link: "https://www.start.gg/tournament/pico-plus-16/details",
160+
rankImg: false,
161+
trailer: "",
162+
stream: ""
163+
},
164164
{
165165
name: "Smash of the Titans 11",
166166
date: "2/21/26",
167167
location: "Bloomington, Illinois, USA",
168168
description: "Welcome to Smash of the Titans 11! Illinois Wesleyan University is back with our 11th edition of Smash regional featuring Dabuz, Deliboid, Shadowhawke, and many more!! ",
169169
imageUrl: "https://images.start.gg/images/tournament/841162/image-725756f044cd841d6402cb75cff7c2c3.jpg",
170170
link: "https://www.start.gg/tournament/smash-of-the-titans-11-1/details",
171-
rankImg: false,
171+
rankImg: true,
172172
trailer: "",
173173
stream: ""
174174
},
@@ -179,6 +179,17 @@ const eventsData = [
179179
description: "Welcome to Flash Flood, GRV's brand new major event. Featuring singles, doubles, and amateur brackets for Ultimate, Melee, and 'Brawl', we aim to provide an unforgettable experience!",
180180
imageUrl: "https://images.start.gg/images/tournament/813787/image-12969cc9155ec8f9247a30aefe8d1120.png",
181181
link: "https://www.start.gg/tournament/flash-flood/details",
182+
rankImg: true,
183+
trailer: "",
184+
stream: ""
185+
},
186+
{
187+
name: "Take Flight '26",
188+
date: "3/14/26",
189+
location: "Dayton, Ohio, USA",
190+
description: "Take Flight is Dayton, Ohio’s annual regional platform fighter tournament!",
191+
imageUrl: "https://images.start.gg/images/tournament/864665/image-9551083e30bca6b48e9a64d778db43a2.jpg",
192+
link: "https://www.start.gg/tournament/take-flight-26/details",
182193
rankImg: false,
183194
trailer: "",
184195
stream: ""
@@ -194,6 +205,17 @@ const eventsData = [
194205
trailer: "",
195206
stream: ""
196207
},
208+
{
209+
name: "Volan 2026",
210+
date: "4/10/26 - 4/12/26",
211+
location: "Knoxville, Tennessee, USA",
212+
description: "The annual Esports Tournament hosted by the student run Esports Club at the University of Tennessee. The event is focused on providing an in-person LAN experience to college esports teams and clubs in the Southeast. Participating in most events will be college student only, but some will be open to the public (Smash and FGC for example. Please see respective event details for more information).",
213+
imageUrl: "https://images.start.gg/images/tournament/841158/image-2cc3597d9d558d105a4406a7ed422903.png",
214+
link: "https://www.start.gg/tournament/volan-2026/details",
215+
rankImg: false,
216+
trailer: "",
217+
stream: ""
218+
},
197219
{
198220
name: "Element",
199221
date: "4/18/26 - 4/19/26",
@@ -204,6 +226,28 @@ const eventsData = [
204226
rankImg: true,
205227
trailer: "",
206228
stream: ""
229+
},
230+
{
231+
name: "House of Paign 25",
232+
date: "4/25/26",
233+
location: "Urbana, Illinois, USA",
234+
description: "After a year-long hiatus, during which we ran Never Melee and Paign: Automata, the House of Paign series is BACK with its 25th iteration and its 12th year.",
235+
imageUrl: "https://images.start.gg/images/tournament/864395/image-d48ee13c8ec71aa4cd3a8b6da0e35c4a.png",
236+
link: "https://www.start.gg/tournament/house-of-paign-25/details",
237+
rankImg: false,
238+
trailer: "",
239+
stream: ""
240+
},
241+
{
242+
name: "Smash Camp: Heartlands",
243+
date: "5/29/26 - 6/1/26",
244+
location: "Wautoma, Wisconsin, USA",
245+
description: "Smash Camp Comes To The Midwest! In the ever wonderful state of Wisconsin, it's the Smash Camp you love in a place that's new. At the beautiful Camp Lakotah you can hike, swim, and go 0-2 (in Melee or Beach Volleyball!) at one the of the most unique venues our scene has to offer.",
246+
imageUrl: "https://images.start.gg/images/tournament/848016/image-ad81fb6d62d51b7553360cac9de398bd.png",
247+
link: "https://www.start.gg/tournament/smash-camp-heartlands/details",
248+
rankImg: true,
249+
trailer: "",
250+
stream: ""
207251
}
208252
];
209253

past-events/2025.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ <h1 id="pageHeader" class="textGradient">2025 PAST EVENTS</h1>
4545
<img class="waveReverse" src="https://github.com/pkzstar/plus-side/blob/main/images/wave-41459%20(3).png?raw=true" alt="">
4646
</div>
4747

48-
<script src="/past-events/pastEvents2025.js"></script>
48+
<script src="/past-events/past js/pastEvents2025.js"></script>
4949
<script src="../generaljscss\navBar.js"></script>
5050
<script src="../generaljscss\script.js"></script>
5151
<!-- <script src="../index js/addEventForm.js"></script> -->
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,19 @@ const eventData = [
189189
vodsUrl: "",
190190
hideRankImage: true
191191
},
192+
{
193+
eventTitle: "Smash Cafe Plus: The December Monthly #22",
194+
imageUrl: "https://images.start.gg/images/tournament/857860/image-3a47ae56f0572834cadeeb56270a14df.png",
195+
eventUrl: "https://www.start.gg/tournament/smash-cafe-plus-the-december-monthly-22/details",
196+
date: "December 6 2025",
197+
location: "Texas",
198+
entrants: 7,
199+
first: "~CP9~",
200+
second: "Ntire",
201+
third: "Plate",
202+
vodsUrl: "",
203+
hideRankImage: true
204+
},
192205
{
193206
eventTitle: "The Good Ol' Days 2 - a Dirtboy Christmas Special",
194207
imageUrl: "https://images.start.gg/images/tournament/852046/image-326481f986ae50a8bf3426e999ff1a53.png",

0 commit comments

Comments
 (0)