/* Unbounce Community :: Tips & Scripts :: Carousel With A Box Widget TS:0002-04-063 *********************** Do not remove this section. It helps our team track useage of external workarounds. */ // jQuery 2.2.4 requierd // CDN link here - https://code.jquery.com/ $(function() { // Add a box to the page and nest the elements inside (can include boxes with grouped content) // The first element that is nested in the containing box will be what shows on page load // Add ID of box containing elements. var container = $("#lp-pom-box-12"); // Add the amount of time before the element switches. EX: 2000 = 2 seconds var time = 4000; // code to select and centre elements container.children().css({ 'top': '50%', 'left': '50%', 'transform': 'translate(-50%, -50%)' }); var allEls = container.children().not(":eq(0)"); var notFirst = allEls.not(":eq(0)"); notFirst.css('display', 'none'); // Function to cycle through the elements in the containing box and show/hide them function ShowEls(el, delay) { $(el[0]).fadeIn(600) .delay(delay) .fadeOut(600) .promise() .done(function() { var putBack = el.splice(0, 1); if (el.length >= 1) { ShowEls(el, delay); allEls.push(putBack[0]); } }); } ShowEls(allEls, time); });

1300 650 325

By providing your details, I agree to the Terms and Conditions and the Privacy Policy. By providing your details, you agree to be added to the Marvel Stadium electronic database and be contacted by Marvel Stadium regarding any services, offer or special promotions that are associated with, endorsed or approved by Marvel Stadium.

THE PERFECT PACKAGE 
FOR ANYONE WHO LOVES 
THEIR FOOTY

As a Centre Wing Member, you will enjoy some of the best seats in the house for every AFL Premiership game at Marvel Stadium.

FIND OUT MORE

AUSTRALIA'S BEST SPORT AND
ENTERTAINMENT PREMIUM PACKAGES

Access to Toyota AFL Final series packages

Inclusive hospitality experiences

Premium reserved seating

Your unrivalled access to the biggest day on the sporting calendar

Enter your details to find your experience at Marvel Stadium

AUSTRALIA'S BEST SPORT AND ENTERTAINMENT PREMIUM PACKAGES

AN UNMATCHED PACKAGE
OF SPORT, HOSPITALITY
AND ENTERTAINMENT

The exclusive access and privileges of being a Medallion Club Member extend well beyond the sporting arena, from $566* per month.

ENQUIRE HERE

OUR MOST PRESTIGIOUS
MEMBERSHIP, FOR THOSE
WHO ENJOY THE BEST

The Diamond Club is Marvel Stadium's most exclusive membership, with fewer than 75 available, from $1,625* per month.

FIND OUT MORE

ENJOY EVERY EVENT IN
LUXURY AND STYLE, WITH
CONTINUOUS SERVICE AND
UNMISSABLE VIEWS

With major sporting events all year round in a world class venue, Marvel Stadium’s Premier Suites offer you the ultimate in private exclusive entertainment.

ENQUIRE HERE

ENJOY EVERY EVENT IN
LUXURY AND STYLE, WITH
CONTINUOUS SERVICE AND UNMISSABLE VIEWS

With major sporting events all year round in a world class venue, Marvel Stadium’s Corporate Suites offer you the ultimate in private corporate entertainment.

ENQUIRE HERE

ENJOY EVERY EVENT IN
LUXURY AND STYLE, WITH
CONTINUOUS SERVICE AND UNMISSABLE VIEWS

With major sporting events all year round in a world class venue, Marvel Stadium’s Corporate Suites offer you the ultimate in private exclusive entertainment.

ENQUIRE HERE

OUR MOST PRESTIGIOUS
MEMBERSHIP, FOR THOSE
WHO ENJOY THE BEST

The Diamond Club is Marvel Stadium's most exclusive membership, with fewer than 75 available, from $1,625* per month.

FIND OUT MORE

AN UNMATCHED PACKAGE OF SPORT, HOSPITALITY AND ENTERTAINMENT

The exclusive access and privileges of being a Medallion Club Member extend well beyond the sporting arena, from $566* per month.

ENQUIRE HERE

THE PERFECT PACKAGE 
FOR ANYONE WHO LOVES 
THEIR FOOTY

As a Centre Wing Member, you will enjoy some of the best seats in the house for every AFL Premiership game at Marvel Stadium.

FIND OUT MORE

ENTER YOUR DETAILS TO DISCOVER MORE

FIND YOUR EXPERIENCE AT MARVEL STADIUM

FIND YOUR EXPERIENCE
AT MARVEL STADIUM

*Terms and Conditions apply

Marvel Stadium is operating under the guidance of the Department of Health and Human Services (DHHS), to find out about our COVID-Safe Venue Planclick here.

jQuery(document).ready(function($) { $('.lp-pom-body').on('click', 'a[href*="#"]', function(e) { //console.log('Hash clicked'); if (!$(e.target).is('[href="#"]')) { if (!$(e.target).is('[href="#0"]')) { if ( location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname ) { // Figure out element to scroll to var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) + ']'); // Does a scroll target exist? if (target.length) { // Only prevent default if animation is actually gonna happen event.preventDefault(); $('html, body').animate({ scrollTop: target.offset().top }, 1000, function() { // Callback after animation // Must change focus! var $target = $(target); $target.focus(); if ($target.is(":focus")) { // Checking if the target was focused return false; } else { $target.attr('tabindex','-1'); // Adding tabindex for elements not focusable $target.focus(); // Set focus again }; }); } } } } }); });