TRUSTED BY

TRUSTED BY


Water Slides
Make Your Event Easier
🤓Learn How To Book
Please watch the video below to watch a video on how to book your Water Slide. .yt-lazy {
position: relative;
cursor: pointer;
max-width: 100%;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
} /* Subtle pop effect when hovering over the video */
.yt-lazy:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.2);
} .yt-lazy img {
width: 100%;
height: auto;
display: block;
} .yt-lazy .play-button {
position: absolute;
top: 50%;
left: 50%;
width: 80px;
height: 80px;
background: rgba(0,0,0,0.7);
border: 3px solid #fff; /* Added a white ring to make it pop */
border-radius: 50%;
transform: translate(-50%, -50%);
z-index: 2;
transition: background 0.3s ease;
} .yt-lazy:hover .play-button {
background: rgba(255, 0, 0, 0.9); /* Changes to "YouTube Red" on hover */
} .yt-lazy .play-button::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
border-style: solid;
border-width: 15px 0 15px 25px;
border-color: transparent transparent transparent white;
transform: translate(-35%, -50%);
}
document.addEventListener("click", function(e){
const el = e.target.closest(".yt-lazy");
if(!el) return; const id = el.getAttribute("data-id");
// This replaces the image with the actual playing video
el.innerHTML = ``;
});

⭐️Most Popular
/* Container Setup */
.custom-slider-container {
position: relative;
width: 100%;
overflow: hidden;
touch-action: pan-y;
font-family: sans-serif;
} .custom-slides-track {
display: flex;
transition: transform 0.4s ease-in-out;
} .custom-slide {
min-width: 100%;
position: relative;
text-align: center;
} /* Text Above Image */
.slide-header-text {
display: block;
padding: 10px;
font-size: 1.2rem;
font-weight: bold;
color: #333;
background: #f9f9f9;
} .custom-slide img {
width: 100%;
display: block;
border-radius: 0 0 8px 8px; /* rounded bottom only */
} /* Navigation arrows */
.slider-btn {
position: absolute;
top: 60%; /* Adjusted for text space */
transform: translateY(-50%);
background: rgba(0,0,0,0.6);
color: #fff;
border: none;
padding: 12px 16px;
cursor: pointer;
z-index: 10;
font-size: 24px;
border-radius: 50%;
} .prev-btn { left: 10px; }
.next-btn { right: 10px; } (function() {
const container = document.getElementById('mySlider');
const track = container.querySelector('.custom-slides-track');
const slides = container.querySelectorAll('.custom-slide');
const prevBtn = container.querySelector('.prev-btn');
const nextBtn = container.querySelector('.next-btn');
let currentIdx = 0;
const slideCount = slides.length; function move() {
track.style.transform = "translateX(-" + (currentIdx * 100) + "%)";
} nextBtn.addEventListener('click', function(e) {
e.preventDefault();
currentIdx = (currentIdx + 1) % slideCount;
move();
}); prevBtn.addEventListener('click', function(e) {
e.preventDefault();
currentIdx = (currentIdx - 1 + slideCount) % slideCount;
move();
}); // Swipe logic
let xStart = 0;
container.addEventListener('touchstart', function(e) {
xStart = e.touches[0].clientX;
}, {passive: true}); container.addEventListener('touchend', function(e) {
let xEnd = e.changedTouches[0].clientX;
let delta = xStart - xEnd;
if (Math.abs(delta) > 50) {
if (delta > 0) currentIdx = (currentIdx + 1) % slideCount;
else currentIdx = (currentIdx - 1 + slideCount) % slideCount;
move();
}
}, {passive: true});
})();
We deliver and set up in all of Sussex County and neighboring cities! Any extra fees may be included at checkout
Book with confidence! We have bounce houses that can be used wet or dry.
Have questions? We are here to help!
Call or Text us at: (302) 249-9711
Call or Text us at: (302) 249-9711
Safety is our number one priority! Water Slides must be property anchored for outdoor events.
Water Slides
Make Your Event Easier
🤓Learn How To Book
Please watch the video below to watch a video on how to book your Water Slide.
.yt-lazy {
position: relative;
cursor: pointer;
max-width: 100%;
}
.yt-lazy img {
width: 100%;
height: auto;
display: block;
}
.yt-lazy .play-button {
position: absolute;
top: 50%;
left: 50%;
width: 70px;
height: 70px;
background: rgba(0,0,0,0.75);
border-radius: 50%;
transform: translate(-50%, -50%);
}
.yt-lazy .play-button::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
border-style: solid;
border-width: 12px 0 12px 20px;
border-color: transparent transparent transparent white;
transform: translate(-35%, -50%);
} document.addEventListener("click", function(e){
const el = e.target.closest(".yt-lazy");
if(!el) return; const id = el.getAttribute("data-id");
el.innerHTML = ``;
});

⭐️Most Popular
Swipe through our most popular rentals according to our customers! .slider {
position: relative;
width: 100%;
overflow: hidden;
touch-action: pan-y;
} .slides {
display: flex;
transition: transform 0.4s ease-in-out;
} .slide {
min-width: 100%;
} .slide img {
width: 100%;
display: block;
border-radius: 8px; /* optional */
} /* Navigation arrows */
.prev,
.next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0,0,0,0.6);
color: #fff;
border: none;
padding: 10px 14px;
cursor: pointer;
z-index: 10;
font-size: 20px;
} .prev { left: 10px; }
.next { right: 10px; } (function () {
let index = 0;
const slider = document.querySelector('.slider');
const slides = slider.querySelector('.slides');
const total = slider.querySelectorAll('.slide').length;
const prevBtn = slider.querySelector('.prev');
const nextBtn = slider.querySelector('.next'); function updateSlide() {
slides.style.transform = `translateX(-${index * 100}%)`;
} // Arrow controls
nextBtn.addEventListener('click', () => {
index = (index + 1) % total;
updateSlide();
}); prevBtn.addEventListener('click', () => {
index = (index - 1 + total) % total;
updateSlide();
}); // Swipe support
let startX = 0;
let endX = 0; slider.addEventListener('touchstart', (e) => {
startX = e.touches[0].clientX;
}); slider.addEventListener('touchend', (e) => {
endX = e.changedTouches[0].clientX;
const diff = startX - endX; if (Math.abs(diff) > 50) {
if (diff > 0) {
index = (index + 1) % total;
} else {
index = (index - 1 + total) % total;
}
updateSlide();
}
});
})();
Safety Note: Outdoor Photo Booth set up must under a tent to best care for our equipment. If you’re unsure about your space, or have questions— we’d be happy to help.
| What you need to know | Details / Answers |
|---|---|
| Recommended Ages | Best for ages 3 to Adult Yrs Old |
| Capacity | 2 Riders / 2 Lanes |
| Why book THIS unit? | High-speed slide, large bounce zone, and splash pool. |
| Wet or Dry? What does this mean? Click here to learn | Can be used WET or DRY |
| What's Included? Click on tabs | Professional delivery, setup, and takedown. DRY Includes high-output blower, 50ft heavy-duty extension cord, and safety stakes. WET Includes all dry items PLUS internal water sprayer system and splash pool setup. |
🚨 IMPORTANT INFORMATION
Surface: Add your details here about grass or concrete setup.
Power: Mention your requirements for outlets and extension cords.
Safety: Reminder about adult supervision and weight limits.
🧽 CLEANING: All units are cleaned and sanitized before use
Weather: Include your rain or wind policy here.
Extra Information:
*🚨IMPORTANT NOTES:
-Choose WET or DRY below (Dry Units Save $15)
-Call 811 to mark underground utilities before we set up
-Ensure the area is clear of debris or animal waste
-No jewelry or sharp objects
-There must be an adult supervision at all time .
Power: Mention your requirements for outlets and extension cords.
Safety: Reminder about adult supervision and weight limits.
🧽 CLEANING: All units are cleaned and sanitized before use
Weather: Include your rain or wind policy here.
Extra Information:
*🚨IMPORTANT NOTES:
-Choose WET or DRY below (Dry Units Save $15)
-Call 811 to mark underground utilities before we set up
-Ensure the area is clear of debris or animal waste
-No jewelry or sharp objects
-There must be an adult supervision at all time .
Pure Party Rentals
20' x 20' Frame Tent
400Sq Ft
24' x 24'Space Needed
Grass/HardSurfaces
Seated (Round Tables)
How many tables: 4-5 Rounds
How many people: 40-50 Guests
📊 View Layout Chart
Seated (Long Tables)
How many tables: 6-8 Banquets
How many people: 48-64 Guests
📊 View Layout Chart
Cocktail Theme
What is this? High-top tables for mingling/standing.
How many tables: 8-10 High Boys
How many people: 75 Guests
📊 View Layout Chart
[Cocktail Image]
Theater Style
What is this? Rows of chairs only. No tables.
How many people: 80 Guests Max
📊 View Layout Chart
[Theater Image]
✨ Tent Add-Ons
- Globe String Lighting (Perimeter)
- Sidewalls (Solid or Window)
- Tent Heaters / Cooling Fans
- Dance Floors & Stages
⚠️ Important Information
Setup & takedown included. Please ensure all underground lines are marked for grass installs. Delivery fee calculated by distance.
Surface Requirement Hard Surface (Call Us)
NEED A BIGGER TENT?Grass
Staking included. Requires clear ground.
Unit Intelligence
// ANALYZING: CALI-PALMS COMBO //
PERFORMANCE
TARGET: AGES 5 TO ADULT 🎯
THEME: LUXE TROPICAL 🌴
THRILL: HIGH-SPEED DROP ⚡
SAFETY: PLATINUM VERIFIED ✨
ENTRY LEVELPRO GRADEELITE S-RANK
SYSTEM STATUS: OFFICIAL POPULAR PICK
"The ultimate balance of safety and extreme fun."
Unit Intelligence

// ANALYZING: CALI-PALMS COMBO //
PERFORMANCE
TARGET: AGES 5-ADULT 🎯
VISUAL: LUXE TROPICAL 🌴
INTENSITY: HIGH-SPEED DROP ⚡
SAFE-SHIELD: VERIFIED ✨
ENTRY LEVELPRO GRADEELITE S-RANK
AVAILABILITY: CRITICAL SELL-OUT RISK
"The gold standard for safety and elite fun."
Unit Intelligence

CORE STATS
Target: 3-15+ 🎯
Capacity: 10 Players 👥
Intensity: High-Energy ⚡
Utility: Wet or Dry 💧🔥
Entry Level Pro Grade Elite S Rank
// UNIT PERKS //
7ft Dual Lane Slide
Climbing Wall
Deep Splash Pool
XL Jump Area
Basketball Hoop
Obstacle Pop Up
Overall: Critical Sell-Out Risk ⚠️
Unit Intelligence

CORE STATS
Target: 3-15+ 🎯
Visual: Luxe Tropical 🌴
Capacity: 10 Players 👥
Intensity: High-Energy ⚡
Utility: Wet or Dry 💧🔥
Entry Level Pro Grade Elite S Rank
// UNIT PERKS //
7ft Dual Lane Sliding
Climbing Wall
Deep Splash Pool
XL Jump Area
Basketball Hoop
Obstacle Pop Up
Overall: Critical Sell-Out Risk ⚠️
Unit Intelligence

CORE STATS
Target: 3-15+ 🎯
Visual: Luxe Tropical 🌴
Capacity: 10 Players 👥
Intensity: High-Energy ⚡
Utility: Wet or Dry 💧🔥
Entry Level Pro Grade Elite S Rank
// UNIT PERKS //
7ft Dual Lane
Climb Wall
Splash Pool
XL Jump Area
BBall Hoop
Obstacles
Overall: Critical Sell-Out Risk ⚠️
Unit Briefing
S-Tier

Model: Cali Palms Combo
Unit Specs
Target: Ages 3-15+ 🎯
Visual: Luxe Tropical 🌴
Capacity: 10 Players 👥
Intensity: High-Energy ⚡
Utility: Wet or Dry 💧🔥
Entry Level Pro Grade Elite S Rank
// UNIT PERKS //
7ft Dual Lanes
Climbing Wall
Deep Pool
XL Jump Area
BasketBall Hoop
Obstacle Pop Up
Overall: HOT Item 🥵🔥
2026 Demand Forecast
👇 TAP A CATEGORY BELOW 👇
Most-Wanted Houses
POPULARITY
🌊Monsoon Madness Combo - HOT 🥵
🇺🇸Castle Tower - TRENDING 🔥
🏝️Cali-Palms - GOING FAST ⚡
👽Solar Combo - FAVORITE ⭐
🏟️Grand Slam Palace - GEM 💎
Other - BOUTIQUE ✨
ELITEHIGH DEMANDSELL-OUT RISK
Booking Urgency Level
POPULARITY
🍨20ft Freeze Pop - TOP CHOICE 🏆
⚡️20ft Tropical Shock - MUST HAVE 🌊
🏖️21ft Beach Camper - POPULAR 🙌
️🔥24ft Tropical Inferno- LOCAL FAV 📍
🏄🏻♂️️20ft Surfs-Up - RARE FIND 🏹
Other - EXCLUSIVE 🔒
ELITEHIGH DEMANDSELL-OUT RISK
Booking Urgency Level
POPULARITY
20x40 High Peak - MOST WANTED 🎪
20x20 High Peak - HIGH PRIORITY 🚨
20x30 High Peak - PREMIUM PICK ✅
40x40 High Peak - TOP TIER 🥇
20x10 Pop Up - REFINED 🥂
Other - CUSTOM SERIES 🎨
ELITEHIGH DEMANDSELL-OUT RISK
Booking Urgency Level
POPULARITY
6️⃣0️⃣ft Mega Course - ULTIMATE 🏁
7️⃣-Element - CHALLENGER 🦾
3️⃣0️⃣ft Retro - ADRENALINE 🚀
Other - PRO SERIES 🏅
ELITEHIGH DEMANDSELL-OUT RISK
Booking Urgency Level
0.0 (0+ Reviews)
❮
❯
SAVE $25
SAVE $51
BEST GRADUATION GIFT
- BIG WATER SLIDE
- SNO-KONE MACHINE
- 2 Tables
- 16 CHAIRS
- 2 SYRUP BOTTLES
- 50 CUPS
- Setup & Breakdown
- Delivery
$663$619
BOOK NOWSAVE $35
SAVE $40
SAVE $20
SAVE $100
