57 lines
1.6 KiB
Markdown
57 lines
1.6 KiB
Markdown
# Gift Prank Website
|
|
|
|
A fun prank website that looks like a gift redemption portal with support for multiple users!
|
|
|
|
## How it works:
|
|
|
|
1. **Code Entry**: Enter a 5-digit redemption code
|
|
2. **Fake Reveal**: Shows an "epic" gift of a week of brewery tours in Holland + 3-day Defqon.1 festival stay with hardcore videos
|
|
3. **Hoax Reveal**: When they confirm, reveals it's a prank and shows the REAL personalized gift!
|
|
|
|
## Available Codes:
|
|
|
|
Each code has a personalized greeting and real gift reveal:
|
|
|
|
- **12345** - Lunch at The Savoy Hotel in London
|
|
- **54321** - Luxury Spa Day Experience
|
|
- **99999** - West End Theatre Experience
|
|
|
|
## Files:
|
|
- `index.html` - Main HTML structure
|
|
- `styles.css` - Styling and animations
|
|
- `script.js` - Interactive functionality with multi-user support
|
|
|
|
## To run:
|
|
Simply open `index.html` in a web browser!
|
|
|
|
## Adding New Users:
|
|
|
|
Edit `script.js` and add a new entry to the `USERS` object:
|
|
|
|
```javascript
|
|
'YOUR_CODE': {
|
|
name: 'User Name',
|
|
greeting: 'Your custom greeting here!',
|
|
hoaxMessage: 'Your custom hoax reveal message!',
|
|
realGift: {
|
|
icon: '🎁', // Emoji icon
|
|
title: 'Gift Title',
|
|
description: 'Gift description text:',
|
|
features: [
|
|
'✨ Feature 1',
|
|
'🎉 Feature 2',
|
|
'💝 Feature 3'
|
|
],
|
|
finalMessage: 'Your final personalized message!'
|
|
}
|
|
}
|
|
```
|
|
|
|
## Customization:
|
|
- Add more users by editing the `USERS` object in `script.js`
|
|
- Modify the fake brewery/festival content in `index.html`
|
|
- Adjust colors and styling in `styles.css`
|
|
- Change the video file by replacing `powerhour.mp4`
|
|
|
|
Enjoy pranking your friends! 🎁😂
|