Skip to content

Welcome to Man Lee Model Online Shop

  • Home
  • Catalog
    • NEW ARRIVALS
    • KYOSHO
    • MINI-Z
    • TAMIYA
    • ATOMIC
    • RADTEC
    • KO PROPO
    • PN RACING
    • RADIO SERVO ESC
    • CHARGER
    • ACCESSORY
    • SANWA
  • contact
Log in
  • Facebook
MAN LEE MODEL ONLINE SHOP
  • Home
  • Catalog
    • NEW ARRIVALS
    • KYOSHO
    • MINI-Z
    • TAMIYA
    • ATOMIC
    • RADTEC
    • KO PROPO
    • PN RACING
    • RADIO SERVO ESC
    • CHARGER
    • ACCESSORY
    • SANWA
  • contact
Log in Cart

Item added to your cart

Collections

  • MINI-Z

    MINI-Z

  • Kyosho

    Kyosho

  • TAMIYA

     

    TAMIYA

  • ATOMIC

    ATOMIC

  • NEW ARRIVALS

    NEW ARRIVALS

  • RADIO SERVO ESC MOTOR

    RADIO SERVO ESC MOTOR

  • CAR KIT

    CAR KIT

  • RADTEC

    RADTEC

  • KO PROPO

    KO PROPO

  • CHARGER

    CHARGER

  • ACCESSORY

    ACCESSORY

  • XPRESS

    XPRESS

  • SANWA

  • PN RACING

    PN RACING

  • HOBBYWING

Quick links

  • 搜尋

Subscribe to our emails

  • Facebook

Country/region

  • Australia (AUD $)
  • Austria (EUR €)
  • Belgium (EUR €)
  • Canada (CAD $)
  • China (CNY ¥)
  • Czechia (CZK Kč)
  • Denmark (DKK kr.)
  • Finland (EUR €)
  • France (EUR €)
  • Germany (EUR €)
  • Hong Kong SAR (HKD $)
  • Iceland (ISK kr)
  • Indonesia (IDR Rp)
  • Ireland (EUR €)
  • Israel (ILS ₪)
  • Italy (EUR €)
  • Japan (JPY ¥)
  • Macao SAR (MOP P)
  • Malaysia (MYR RM)
  • Netherlands (EUR €)
  • New Zealand (NZD $)
  • Norway (HKD $)
  • Poland (PLN zł)
  • Portugal (EUR €)
  • Singapore (SGD $)
  • South Korea (KRW ₩)
  • Spain (EUR €)
  • Sweden (SEK kr)
  • Switzerland (CHF CHF)
  • Taiwan (TWD $)
  • Thailand (THB ฿)
  • United Arab Emirates (AED د.إ)
  • United Kingdom (GBP £)
  • United States (USD $)
Payment methods
  • Apple Pay
  • Google Pay
  • Mastercard
  • PayPal
  • Visa
© 2025, MAN LEE MODEL ONLINE SHOP Powered by Shopify
  • Choosing a selection results in a full page refresh.
  • Opens in a new window.
const selectVariantByClickingImage = { // Create variant images from productJson object _createVariantImage: function (product) { const variantImageObject = {}; product.variants.forEach((variant) => { if ( typeof variant.featured_image !== 'undefined' && variant.featured_image !== null ) { const variantImage = variant.featured_image.src .split('?')[0] .replace(/http(s)?:/, ''); variantImageObject[variantImage] = variantImageObject[variantImage] || {}; product.options.forEach((option, index) => { const optionValue = variant.options[index]; const optionKey = `option-${index}`; if ( typeof variantImageObject[variantImage][optionKey] === 'undefined' ) { variantImageObject[variantImage][optionKey] = optionValue; } else { const oldValue = variantImageObject[variantImage][optionKey]; if (oldValue !== null && oldValue !== optionValue) { variantImageObject[variantImage][optionKey] = null; } } }); } }); return variantImageObject; }, _updateVariant: function (event, id, product, variantImages) { const arrImage = event.target.src .split('?')[0] .replace(/http(s)?:/, '') .split('.'); const strExtention = arrImage.pop(); const strRemaining = arrImage.pop().replace(/_[a-zA-Z0-9@]+$/, ''); const strNewImage = `${arrImage.join('.')}.${strRemaining}.${strExtention}`; if (typeof variantImages[strNewImage] !== 'undefined') { product.variants.forEach((option, index) => { const optionValue = variantImages[strNewImage][`option-${index}`]; if (optionValue !== null && optionValue !== undefined) { const selects = document.querySelectorAll('#'+ id + ' [class*=single-option-selector]'); const options = selects[index].options; for (let option, n = 0; (option = options[n]); n += 1) { if (option.value === optionValue) { selects[index].selectedIndex = n; selects[index].dispatchEvent(new Event('change')); break; } } } }); } }, _selectVariant: function() { const productJson = document.querySelectorAll('[id^=ProductJson-'); if (productJson.length > 0) { productJson.forEach((product) => { const sectionId = product.id.replace("ProductJson-", "shopify-section-"); const thumbnails = document.querySelectorAll('#'+ sectionId + ' img[src*="/files/"]'); if (thumbnails.length > 1) { const productObject = JSON.parse(product.innerHTML); const variantImages = this._createVariantImage(productObject); // need to check variants > 1 if (productObject.variants.length > 1) { thumbnails.forEach((thumbnail) => { thumbnail.addEventListener('click', (e) => this._updateVariant(e, sectionId, productObject, variantImages), ); }); } } }); } }, }; if (document.readyState !== 'loading') { selectVariantByClickingImage._selectVariant(); } else { document.addEventListener( 'DOMContentLoaded', selectVariantByClickingImage._selectVariant(), ); }