mirror of
https://github.com/soconnor0919/october.today.git
synced 2025-12-12 22:14:44 -05:00
Redesign site with enhanced UI, animations, and SMS sharing feature
This commit is contained in:
3
grid.svg
Normal file
3
grid.svg
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||||
|
<circle cx="10" cy="10" r="1" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 145 B |
17
index.html
17
index.html
@@ -7,20 +7,25 @@
|
|||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap" rel="stylesheet">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div class="orb primary"></div>
|
||||||
|
<!-- <div class="orb secondary"></div> -->
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>Today is</h1>
|
<h1>Today is</h1>
|
||||||
<div class="date">
|
<div class="date">
|
||||||
<h2>October <span id="october-day">??</span><sup id="ordinal">th</sup></h2>
|
<h2>October <span id="october-day">??</span><sup id="ordinal">th</sup></h2>
|
||||||
<p class="year">2019</p>
|
<p class="year">2019.</p>
|
||||||
</div>
|
</div>
|
||||||
<p class="subtitle">...because October 2019 never ended</p>
|
<button id="share-button" class="share-button">
|
||||||
|
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<path d="M7 11l5-5 5 5"/>
|
||||||
|
<path d="M12 6v13"/>
|
||||||
|
</svg>
|
||||||
|
Share via SMS
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<footer>
|
|
||||||
<p>A running joke between friends since 2019</p>
|
|
||||||
</footer>
|
|
||||||
<script src="script.js"></script>
|
<script src="script.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
86
script.js
86
script.js
@@ -12,31 +12,73 @@ document.addEventListener('DOMContentLoaded', function() {
|
|||||||
// Add 1 because October 1 is the first day
|
// Add 1 because October 1 is the first day
|
||||||
const octoberDay = diffDays + 1;
|
const octoberDay = diffDays + 1;
|
||||||
|
|
||||||
// Set the day in the HTML
|
// Animate the counter
|
||||||
document.getElementById('october-day').textContent = octoberDay;
|
const octoberDayElement = document.getElementById('october-day');
|
||||||
|
const targetNumber = octoberDay;
|
||||||
|
|
||||||
|
// Start from a lower number for animation
|
||||||
|
let currentNumber = Math.max(1, targetNumber - 50);
|
||||||
|
|
||||||
|
// Set initial value
|
||||||
|
octoberDayElement.textContent = currentNumber;
|
||||||
|
|
||||||
|
// Animate the number counting up
|
||||||
|
const counterAnimation = setInterval(() => {
|
||||||
|
currentNumber++;
|
||||||
|
octoberDayElement.textContent = currentNumber;
|
||||||
|
|
||||||
|
if (currentNumber >= targetNumber) {
|
||||||
|
clearInterval(counterAnimation);
|
||||||
|
// Once animation is done, set the correct ordinal suffix
|
||||||
|
setOrdinalSuffix(targetNumber);
|
||||||
|
}
|
||||||
|
}, 30);
|
||||||
|
|
||||||
// Set the correct ordinal suffix (st, nd, rd, th)
|
// Set the correct ordinal suffix (st, nd, rd, th)
|
||||||
const ordinal = document.getElementById('ordinal');
|
function setOrdinalSuffix(number) {
|
||||||
|
const ordinal = document.getElementById('ordinal');
|
||||||
if (octoberDay % 100 >= 11 && octoberDay % 100 <= 13) {
|
|
||||||
// Special case for 11th, 12th, 13th
|
if (number % 100 >= 11 && number % 100 <= 13) {
|
||||||
ordinal.textContent = 'th';
|
// Special case for 11th, 12th, 13th
|
||||||
} else {
|
ordinal.textContent = 'th';
|
||||||
switch (octoberDay % 10) {
|
} else {
|
||||||
case 1:
|
switch (number % 10) {
|
||||||
ordinal.textContent = 'st';
|
case 1:
|
||||||
break;
|
ordinal.textContent = 'st';
|
||||||
case 2:
|
break;
|
||||||
ordinal.textContent = 'nd';
|
case 2:
|
||||||
break;
|
ordinal.textContent = 'nd';
|
||||||
case 3:
|
break;
|
||||||
ordinal.textContent = 'rd';
|
case 3:
|
||||||
break;
|
ordinal.textContent = 'rd';
|
||||||
default:
|
break;
|
||||||
ordinal.textContent = 'th';
|
default:
|
||||||
|
ordinal.textContent = 'th';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set the page title to include the current October day
|
||||||
|
document.title = `October ${number}${ordinal.textContent}, 2019`;
|
||||||
|
|
||||||
|
// Setup SMS share button
|
||||||
|
setupShareButton(number, ordinal.textContent);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set the page title to include the current October day
|
// Setup SMS share button
|
||||||
document.title = `October ${octoberDay}${ordinal.textContent}, 2019`;
|
function setupShareButton(dayNumber, ordinalSuffix) {
|
||||||
|
const shareButton = document.getElementById('share-button');
|
||||||
|
|
||||||
|
if (shareButton) {
|
||||||
|
shareButton.addEventListener('click', function() {
|
||||||
|
// Create the message: "happy october xxxxth"
|
||||||
|
const message = `happy october ${dayNumber}${ordinalSuffix}`;
|
||||||
|
|
||||||
|
// Create SMS link with the message
|
||||||
|
const smsLink = `sms:?&body=${encodeURIComponent(message)}`;
|
||||||
|
|
||||||
|
// Open the SMS app
|
||||||
|
window.open(smsLink, '_blank');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
223
style.css
223
style.css
@@ -1,13 +1,87 @@
|
|||||||
|
:root {
|
||||||
|
/* Light mode variables */
|
||||||
|
--background: hsl(200, 30%, 97%);
|
||||||
|
--foreground: hsl(200, 50%, 20%);
|
||||||
|
--card: hsla(0, 0%, 100%, 0.5);
|
||||||
|
--card-foreground: hsl(200, 50%, 20%);
|
||||||
|
--primary: hsl(200, 85%, 45%);
|
||||||
|
--primary-foreground: hsl(0, 0%, 100%);
|
||||||
|
--secondary: hsl(37, 95%, 58%); /* Amber/orange color */
|
||||||
|
--secondary-foreground: hsl(200, 50%, 20%);
|
||||||
|
--muted: hsl(200, 30%, 96%);
|
||||||
|
--muted-foreground: hsl(200, 30%, 40%);
|
||||||
|
--accent: hsl(200, 85%, 45%);
|
||||||
|
--accent-foreground: hsl(0, 0%, 100%);
|
||||||
|
--border: hsla(200, 30%, 90%, 0.2);
|
||||||
|
--radius: 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
:root {
|
||||||
|
--background: hsl(200, 30%, 8%);
|
||||||
|
--foreground: hsl(200, 20%, 96%);
|
||||||
|
--card: hsla(200, 25%, 15%, 0.4);
|
||||||
|
--card-foreground: hsl(200, 15%, 85%);
|
||||||
|
--primary: hsl(200, 70%, 40%);
|
||||||
|
--primary-foreground: hsl(0, 0%, 100%);
|
||||||
|
--secondary: hsl(37, 92%, 50%); /* Darker amber for dark mode */
|
||||||
|
--secondary-foreground: hsl(200, 20%, 96%);
|
||||||
|
--muted: hsl(200, 30%, 20%);
|
||||||
|
--muted-foreground: hsl(200, 30%, 65%);
|
||||||
|
--accent: hsl(200, 70%, 40%);
|
||||||
|
--accent-foreground: hsl(0, 0%, 100%);
|
||||||
|
--border: hsla(200, 30%, 20%, 0.2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
border-color: var(--border);
|
||||||
|
font-family: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes gradient-move-1 {
|
||||||
|
0% {
|
||||||
|
transform: translate(-50%, -50%) scale(1) rotate(0deg);
|
||||||
|
}
|
||||||
|
25% {
|
||||||
|
transform: translate(-50%, -50%) scale(1.05) rotate(90deg);
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
transform: translate(-50%, -50%) scale(0.95) rotate(180deg);
|
||||||
|
}
|
||||||
|
75% {
|
||||||
|
transform: translate(-50%, -50%) scale(1.05) rotate(270deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: translate(-50%, -50%) scale(1) rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes gradient-move-2 {
|
||||||
|
0% {
|
||||||
|
transform: translate(-50%, -50%) scale(0.95) rotate(0deg);
|
||||||
|
}
|
||||||
|
25% {
|
||||||
|
transform: translate(-50%, -50%) scale(1) rotate(-90deg);
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
transform: translate(-50%, -50%) scale(1.05) rotate(-180deg);
|
||||||
|
}
|
||||||
|
75% {
|
||||||
|
transform: translate(-50%, -50%) scale(1) rotate(-270deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: translate(-50%, -50%) scale(0.95) rotate(-360deg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'Poppins', sans-serif;
|
font-family: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
background-color: #ff7518; /* Pumpkin orange */
|
background-color: var(--background);
|
||||||
color: #333;
|
color: var(--foreground);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@@ -15,22 +89,87 @@ body {
|
|||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
isolation: isolate;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dot grid background */
|
||||||
|
body {
|
||||||
|
background-image: url('grid.svg');
|
||||||
|
background-size: 20px 20px;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Spinning orb gradient */
|
||||||
|
.orb {
|
||||||
|
position: fixed;
|
||||||
|
width: 120vmax;
|
||||||
|
height: 120vmax;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
border-radius: 50%;
|
||||||
|
pointer-events: none;
|
||||||
|
z-index: -10;
|
||||||
|
will-change: transform;
|
||||||
|
filter: blur(40px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.orb.primary {
|
||||||
|
background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
|
||||||
|
opacity: 0.4;
|
||||||
|
animation: gradient-move-1 30s ease-in-out infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
background-color: #fff;
|
background-color: var(--card);
|
||||||
|
color: var(--card-foreground);
|
||||||
padding: 50px;
|
padding: 50px;
|
||||||
border-radius: 15px;
|
border-radius: var(--radius);
|
||||||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
|
||||||
max-width: 600px;
|
max-width: 600px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
-webkit-backdrop-filter: blur(10px);
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
z-index: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container::before {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
z-index: -1;
|
||||||
|
border-radius: inherit;
|
||||||
|
background: linear-gradient(
|
||||||
|
to bottom right,
|
||||||
|
transparent 0%,
|
||||||
|
rgba(255, 255, 255, 0.05) 50%,
|
||||||
|
transparent 100%
|
||||||
|
);
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container:hover {
|
||||||
|
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
|
||||||
|
transform: translateY(-5px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.container:hover::before {
|
||||||
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
font-weight: 400;
|
font-weight: 500;
|
||||||
|
color: var(--foreground);
|
||||||
|
letter-spacing: -0.02em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.date {
|
.date {
|
||||||
@@ -40,27 +179,84 @@ h1 {
|
|||||||
h2 {
|
h2 {
|
||||||
font-size: 3.5rem;
|
font-size: 3.5rem;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
color: var(--foreground);
|
||||||
|
letter-spacing: -0.03em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#october-day {
|
#october-day {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
color: #ff7518; /* Pumpkin orange */
|
color: var(--primary);
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#october-day::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
bottom: -5px;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 3px;
|
||||||
|
background-color: var(--primary);
|
||||||
|
transform: scaleX(0);
|
||||||
|
transition: transform 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container:hover #october-day::after {
|
||||||
|
transform: scaleX(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.year {
|
.year {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
opacity: 0.7;
|
color: var(--muted-foreground);
|
||||||
|
letter-spacing: -0.02em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.subtitle {
|
.subtitle {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
opacity: 0.8;
|
color: var(--muted-foreground);
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
color: rgba(255, 255, 255, 0.8);
|
color: var(--muted-foreground);
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
|
margin-top: 20px;
|
||||||
|
position: relative;
|
||||||
|
z-index: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
.share-button {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
background-color: var(--primary);
|
||||||
|
color: var(--primary-foreground);
|
||||||
|
border: none;
|
||||||
|
border-radius: var(--radius);
|
||||||
|
padding: 10px 16px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 500;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
margin-top: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.share-button:hover {
|
||||||
|
opacity: 0.9;
|
||||||
|
transform: translateY(-2px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.share-button:active {
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.share-button svg {
|
||||||
|
transition: transform 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.share-button:hover svg {
|
||||||
|
transform: translateY(-2px);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 600px) {
|
@media (max-width: 600px) {
|
||||||
@@ -75,4 +271,9 @@ footer {
|
|||||||
h2 {
|
h2 {
|
||||||
font-size: 2.5rem;
|
font-size: 2.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.share-button {
|
||||||
|
padding: 8px 14px;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user