This item is already in your cart
Go to Cart
Home Austin General Admission Ticket to Museum of Ice Cream
Austin, Texas
`; } return `
`; }, /** * @param {Object} args * @param {string} args.id * @param {string} args.videoIsVertical * @param {number} args.index */ generateVimeoVideoTemplate({ id, videoIsVertical, index }) { const widthClass = videoIsVertical ? 'giftory-gallery-masonry-template--20474375438635__main__video-vertical' : 'giftory-gallery-masonry-template--20474375438635__main__video'; return `
`; }, destroyMasonry() { if (this.masonry) { this.masonry.destroy(); } }, setupMasonry() { this.destroyMasonry(); this.masonry = new Masonry(this.rootContainer, { itemSelector: '.giftory-gallery-masonry-template--20474375438635__main__grid-item', columnWidth: '.giftory-gallery-masonry-template--20474375438635__main__grid-sizer', gutter: '.giftory-gallery-masonry-template--20474375438635__main__gutter-sizer', }); this.setupVimeoPlayers(); }, /** * @param {number} width * @param {boolean} videoIsVertical */ getVideoDynamicHeight(width, videoIsVertical) { if (videoIsVertical) { return (width / this.VIDEO_ASPECT_RATIO.y) * this.VIDEO_ASPECT_RATIO.x; } return (width / this.VIDEO_ASPECT_RATIO.x) * this.VIDEO_ASPECT_RATIO.y; }, destroyVimeoVideos() { for (const player of this.players) { if (player?.destroy) { player.destroy(); } } this.players = []; }, setupVimeoPlayers() { const videos = this.extractedVideos; // clear existing players if any this.destroyVimeoVideos(); for (const { elementId, videoUrl, videoIsVertical } of videos) { const playerElement = document.getElementById(elementId); // NOTE: we add 16 to fill in the gutter gap for landscape videos const clientWidth = playerElement.clientWidth; const staticWidth = (videoIsVertical ? this.MAX_SCALE : (this.MAX_SCALE * 2) + 16); const width = this.clamp(clientWidth || staticWidth, 0, 728); const height = this.getVideoDynamicHeight(width, videoIsVertical); const vimeoPlayer = new VimeoVideoPlayer(playerElement, videoUrl, { height, maxheight: height, maxwidth: width, loop: true, muted: true, controls: false, transparent: false, }); this.players.push(vimeoPlayer); if (this.masonry) { this.masonry.layout(); } } }, /** * @param {Object} args * @param {GalleryContent[]} args.contents - A validated array of gallery contents. * @param {boolean} args.useImageService - whether to use the external image service for fetching images. */ setContents({ contents, useImageService }) { const gridItems = []; /** * @type {ExtractedVideo[]} */ this.extractedVideos = []; let index = 0; const videoContent = contents.find(content => content.type == 'video'); const videoPosition = `end`; if (videoContent) { contents = contents.filter(content => content.type != 'video'); // sets the video content to the first content of the gallery if (videoPosition == 'start' || !videoPosition) { contents.splice(0, 0, videoContent) } else { // sets the video content to the last content of the gallery contents.splice(contents.length, 0, videoContent); } } for (const content of contents) { if (content.type === 'image') { gridItems.push(this.generateImageTemplate({ content, useImageService, index, })); } else if (content.type === 'video') { const id = `mainProductGalleryLightboxMasonry-template--20474375438635__main-${index}`; const videoIsVertical = (content?.video?.width || 0) < (content?.video?.height || 0); gridItems.push(this.generateVimeoVideoTemplate({ id, videoIsVertical, index, })); this.extractedVideos.push({ elementId: id, videoUrl: content?.video?.videoUrl || '', videoIsVertical, }); } index++; } const template = `
${gridItems.join('')} `; this.rootContainer.innerHTML = template; if (this.onItemClick) { const imageItems = this.rootContainer.querySelectorAll('.giftory-gallery-masonry-template--20474375438635__main__image'); for (const image of [...imageItems]) { image.addEventListener('click', () => { const index = Number(image.getAttribute('data-index')); this.onItemClick(index); }); } } }, }; document.addEventListener('DOMContentLoaded', () => { mainProductGalleryLightboxMasonry.init(); });
0/0
`; } return `
`; }, generateThumbnailSlide({ content, useImageService, index }) { const width = 190; const height = 142; if (content.type === 'video') { return `
${ShadowedPlayIcon(`mainProductGalleryLightboxSlider-thumbnail-${index}`)}
`; } if (useImageService) { const url = `https://media.giftory.com/${width}x${height}/cover/${content?.image?.src}`; return `
`; } return `
`; }, generateVimeoVideoSlide({ id, videoUrl, orientation }) { return `
`; }, clearSlides() { this.mainSwiper.removeAllSlides(); this.thumbnailSwiper.removeAllSlides(); }, setupVimeoPlayers() { const videoIds = this.vimeoPlayerIds; for (const player of this.vimeoPlayers) { if (player?.destroy) { player.destroy(); } } this.vimeoPlayers = []; for (const id of this.vimeoPlayerIds) { const playerElement = document.getElementById(id); const container = playerElement.parentElement; const videoUrl = playerElement.getAttribute('data-video-url'); const orientation = playerElement.getAttribute('data-orientation'); let height = 0; let maxheight = this.DESKTOP_SIZES.height; const width = container?.clientWidth || playerElement.clientWidth; if (orientation === 'portrait') { const clampedWidth = this.clamp(width, 0, 400); height = this.clamp((clampedWidth / this.VIDEO_ASPECT_RATIO.y) * this.VIDEO_ASPECT_RATIO.x, 0, this.DESKTOP_SIZES.height); } else { height = (width / this.VIDEO_ASPECT_RATIO.x) * this.VIDEO_ASPECT_RATIO.y; maxheight = height; } const options = { height, maxheight: height, loop: true, muted: true, controls: false, transparent: false, }; if (orientation === 'portrait') { options.maxwidth = 400; } const vimeoPlayer = new VimeoVideoPlayer(playerElement, videoUrl, options); this.vimeoPlayers.push(vimeoPlayer); } }, /** * @param {Object} args * @param {GalleryContent[]} args.contents - A validated array of gallery contents. * @param {boolean} args.useImageService - whether to use the external image service for fetching images. */ setContents({ contents, useImageService }) { const mainTemplates = []; const thumbnailTemplates = []; this.vimeoPlayerIds = []; this.itemsCount = contents.length; let index = 0; const videoContent = contents.find(content => content.type == 'video'); const videoPosition = `end`; if (videoContent) { contents = contents.filter(content => content.type != 'video'); // sets the video content to the first content of the gallery if (videoPosition == 'start' || !videoPosition) { contents.splice(0, 0, videoContent) } else { // sets the video content to the last content of the gallery contents.splice(contents.length, 0, videoContent); } } for (const content of contents) { if (content.type === 'image') { const mainSlide = this.generateMainSwiperImageSlide({ content, useImageService }); const thumbnail = this.generateThumbnailSlide({ content, useImageService, index }); mainTemplates.push(mainSlide); thumbnailTemplates.push(thumbnail); } else if (content.type === 'video') { let orientation = 'landscape'; if (content?.video?.width < content?.video?.height) { orientation = 'portrait'; } const id = `mainProductGalleryLightboxSlider-slider-video-${index}`; const mainSlide = this.generateVimeoVideoSlide({ id, videoUrl: content?.video?.videoUrl || '', orientation, }); const thumbnail = this.generateThumbnailSlide({ content, useImageService, index }); this.vimeoPlayerIds.push(id); mainTemplates.push(mainSlide); thumbnailTemplates.push(thumbnail); } index++; } this.clearSlides(); this.mainSwiper.addSlide(0, mainTemplates.reverse()); this.thumbnailSwiper.addSlide(0, thumbnailTemplates.reverse()); }, }; document.addEventListener('DOMContentLoaded', () => { mainProductGalleryLightboxSlider.init(); });
Home Austin General Admission Ticket to Museum of Ice Cream
Austin, Texas
Duration: 1 hour
Overview
Step into the enchanting world of the Museum of Ice Cream in Austin, where you can explore 12 interactive, multi-sensory installations filled with unlimited ice cream, playful activities, and a world-famous Sprinkle Pool. This delightful experience is perfect for all ages, offering a whimsical escape that combines creativity, fun, and, of course, lots of ice cream!
🍦 Enjoy unlimited ice cream in a variety of flavors as you explore the museum
🌈 Dive into the world-famous Sprinkle Pool for a splash of colorful fun
🎠 Spin around on a whimsical cookie carousel that brings childhood dreams to life
🍸 Visit the bar for unique cocktails crafted especially for adult adventurers
Availability
When do I choose a date?
After purchase, you can request your preferred dates and times by following the instructions in the email you receive. If it's a gift, the recipient will also get an email with booking instructions.
Year-Round,
Monday & Thursday 12:00pm – 6:00pm
Friday 12:00pm – 7:00pm
Saturday 10:00am – 7:00pm
Sunday 10:00am – 6:00pm
*Closed on Tuesdays & Wednesdays
${name}
`; }, /** * @param {Location[]} locations * @param {string} locatedIn */ setLocations: function(locations, locatedIn) { if (!this.map) { console.error('The map "mainProductMap"" is not yet initialized.'); return; } this.clear(); this.locations = locations; this.heading.textContent = `Located in ${locatedIn}`; if (locations.length <= 1) { const location = locations[0]; const lat = JSON.parse(location.lat); const lng = JSON.parse(location.lng); const latlng = new google.maps.LatLng({ lat, lng }); const marker = new google.maps.Marker({ position: latlng, map: this.map }); this.map.setCenter(latlng); this.markers = [marker]; return; } const coordinates = []; const markers = []; const bounds = new google.maps.LatLngBounds(); const locationButtons = []; for (const location of locations) { const lat = Number(location.lat); const lng = Number(location.lng); const latlng = new google.maps.LatLng({ lat, lng }); bounds.extend(latlng); coordinates.push(latlng); const marker = new google.maps.Marker({ position: latlng, map: this.map }); markers.push(marker); locationButtons.push(this.createLocationButton(location)); } this.markers = markers; const setBounds = () => { this.map.fitBounds(bounds); }; setBounds(); window.addEventListener('resize', setBounds); const zoom = (this.map?.getZoom() || 10) - 1; this.map.setZoom(zoom); // render locations list this.locationsElement.style.display = 'grid'; this.locationsElement.innerHTML = locationButtons.join(''); const buttons = document.querySelectorAll('#mainProductMap__locations .giftory-google-map-v2__location-btn'); if (buttons) { for (const button of [...buttons]) { button.addEventListener('click', () => { const lat = Number(button.getAttribute('data-latitude')); const lng = Number(button.getAttribute('data-longitude')); this.map.panTo({ lat, lng }); this.map.setZoom(16); }) } } }, };
Full description
Dive into a world of sweet delights at Austin's Museum of Ice Cream, where fantasy and fun meet frosty treats. This isn't just another museum; it's an interactive celebration of ice cream crafted to spark joy and creativity in visitors of all ages. Wander through 12 unique, multi-sensory installations, each designed to engage your senses and imagination in the most playful way possible. From a whimsical sprinkle pool that invites you to jump in for a dip to a cookie carousel that spins stories as well as treats, every corner of this museum is built for discovery and delight.
Secure your spot by booking in advance and choose from various time slots to find the perfect moment for your visit. As you make your way through the installations, savor unlimited ice cream—from classic flavors to surprising new delights—that promise to make your experience even sweeter. Perfect for families, date nights, or a nostalgic trip with friends, the Museum of Ice Cream in Austin offers a tasty escape into the fantastical world of ice cream. Don’t miss out on the special treats for adults either, including unique cocktails at the museum’s bar, blending indulgence with innovation for an unforgettable outing.
Practical information
Any restrictions to participate?
- Age: All age groups are welcome
Who can you accommodate for?
- Children: All ages are welcome and children 2 and under are free to enter the museum without a ticket. Children must be 3 years or older and 44 inches or taller to ride the slide. Children must be able to ride the slide alone, as they are not able to accommodate in-lap riders. All guests under the age of 18 years old must be accompanied by a parent or guardian.
- Individuals with disabilities: The museum is wheelchair accessible and service animals are allowed.
- Dietary restrictions: Vegan and dairy-free treats are available. Please note that most treats are not certified gluten-free or Kosher at this time. If nuts are served, they will be labeled, but please note products may contain traces of nuts and they cannot guarantee preparation in a nut-free environment.
- Pets: Sorry, no pets allowed.
What to expect on the day of the experience?
- Duration: 1.5 hours. The experience is self-paced, so you can take as much time as you would like in each exhibit. Usually guests spend about 1-1.5 hours at the museum.
- What’s included:
- General admission with unlimited ice cream
- Themed crafts and activities
- Countless interactive installations
- World-famous Sprinkle Pool
- Who will be present: This is a self-guided experience. As it is a public museum, there will be other guests visiting.
- Spectators: No spectators are allowed, everyone must have a ticket.
- Photo/ video: Photography is allowed and encouraged! Commercial or product shoots, press interviews, media shoots, and all professional video equipment is prohibited without advance approval and accompaniment from a Museum of Ice Cream representative.
- Specific rules to follow: Luggage, sealed boxes, garment bags, bicycles, skateboards, skates, scooters, plants, flowers, food, and musical instruments may not be brought into the museum. All guests in a group must have VIP Admission tickets to enter together. VIP Tickets are only valid for the same date as purchased.
How to prepare?
- Weather dependency: This is an indoor experience.
- Arrival: Arrive anytime within business hours on your booked date, even if General Admission is sold out.
- Parking: There are hourly parking garages nearby.
- What to wear: Comfortable clothing and shoes for exploring the museum.
- What to bring:
- Your love of ice cream and an official photo ID.
- All garments, backpacks, briefcases, and bags must remain on your person and cannot be left unattended. Umbrellas must be contained within an admissibly-sized bag.
- Luggage, sealed boxes, garment bags, bicycles, skateboards, skates, scooters, plants, flowers, food, and musical instruments may not be brought into the museum.
- Restrooms/ lockers/ changing rooms: Restrooms are available onsite, but there are no lockers or changing rooms.
Returns, exchanges and cancellation
Unused Experience Vouchers can be returned within 30 days for a full refund to the original purchaser, no questions asked.
If you have any unused Experience Vouchers, you can exchange them for anything else in our marketplace, no matter when. If you choose an experience that's more expensive, you'll need to pay the difference, but if you choose one that costs less, you'll receive a credit towards your next booking.
No refunds are allowed once the experience is booked, but you can reschedule up to 24 hours before your experience, for a date within a year of the original booking. To reschedule, contact the experience provider directly. No-shows or rescheduling less than 24 hours in advance means losing the value of your experience.
Trustpilot
Payment methods
Buy now, pay over time with
How it works
Find the perfect gift experience
Receive a voucher that never expires
Choose your preferred date & time
Make new memories!
Austin VIP Ticket to Museum of Ice Cream with Anytime Access
Austin, Texas
Austin VIP Ticket to Museum of Ice Cream with Anytime Access
Vendor:
Regular price From $80
From $80 Regular price Sale price
Unit price / per
You save $-80
Similar categories
- All Experiences
- Austin Christmas Gifts
- Austin Experience Gifts
- Best Experience Gifts
- Best Sellers
- Birthday Experience Gifts
- Christmas Experience Gifts
- Corporate Holiday Gifts
- Entertainment and Culture
- Experience Birthday Gifts for Him
- Experience Gifts for Boyfriend
- Experience Gifts for Brothers
- Experience Gifts for Girlfriends
- Experience Gifts for Husband
- Experience Gifts for Kids
- Experience Gifts for Men
- Experience Gifts for Mom
- Experience Gifts for Parents
- Experience Gifts for Sisters
- Experience Gifts for Wife
- Experience Gifts for Women
- Experience Gifts Under $100
- Experience Gifts Under $50
- Fabulous Fall Gifts
- Family Experience Gift Ideas
- Father's Day Experience Gifts
- Graduation Experience Gifts
- Mother's Day Experience Gifts
- New experiences
- Stocking Stuffers
- Texas Birthday Gifts
- Texas Christmas Gifts
- Texas Experience Gifts
- Texas Father's Day Gifts
- Texas Mother's Day Gifts
- Thank You Experience Gifts
- Valentine's Day Experience Gifts