top of page

This Years Events!

Anime Night Mart -- California
Anime Night Mart -- California
  • Date: May 17th -- May 18th

  • Address: 1025 Westminster Mall, Westminster, CA 92683

  • Booth Number: #134


Anime Impulse -- Orange County
Anime Impulse -- Orange County
  • Date: Augest 30th -- Augest 31st (10 AM -- 6 PM)

  • Address: Anaheim Convention Center, 800 West Katella Avenue, Anaheim, CA 92802

  • Booth Number: X23

Anime Night Mart -- California
Anime Night Mart -- California
  • Date: October 18th -- October 19th

  • Address: 1025 Westminster Mall, Westminster, CA 92683

  • Booth Number: #24



 
 
 

Comments


Back to Top
bottom of page
import wixWindow from 'wix-window'; $w.onReady(function () { // Define the image to display const image = document.createElement('img'); image.src = "https://drive.google.com/uc?id=1nJ18HQDUjhjtwPdwKMjDiN4Jr_iVpUMp"; image.style.position = 'absolute'; // Add an event listener to the document to track the mouse movements document.addEventListener('mousemove', function(e) { // Set the image's position to follow the mouse image.style.left = e.pageX + 'px'; image.style.top = e.pageY + 'px'; }); // Add the image to the page const gifContainer = $w('#gif-container'); gifContainer.append(image); // Disable page scrolling wixWindow.scroll.disable(); }); // Enable page scrolling when the page unloads $w.onUnload(function() { wixWindow.scroll.enable(); });