null
Image 1

Kori Mesh 35mm Hollow Balltop: Blue

×

Sorry but this item is currently unavailable.

Please check back at a later stage.

Rating
Price:
$10.25 (USD)
Brand
SKU
KDIT-KORI-MESH-CB
Weight
1.00 Ounces
Availability
Ships within 1-2 business days
Shipping
Calculated at checkout
Max Qty
4 unit(s)

Why is there a quantity limit? Learn more. new-window-icon.png

Current Stock
We're sorry. This product is currently sold out.
Description
Reviews
Videos
Warranty
Other Details
  • Product Description

    The KDiT Kori offers a translucent, Sanwa JLF, Seimitsu LS, and Hori Hayabusa compatible 35mm balltop with a hollow threading for LED lighting.

    Classic tight mesh pattern

    The original Sanwa LB-35 mesh balltop are highly coveted for their style.  Displaying a tight checkerboard pattern, the original LB-35 mesh balltop adds a sophisticated design to most joystick configurations. Sanwa released two versions of the mesh balltop.  The original, tight mesh balltop has a cleaner, more pronounced mesh pattern than their recent mesh balltop, which has a looser pattern.  The original pattern was rather difficult to find, making them rather expensive to own.

    KDiT's mesh imprint closely emulates the original tight checkerboard pattern of Sanwa's older balltops.

    Closest Match to OBSC and KN

    "Kori" in Japanese means "ice". Each of the available 8 deliciously colored battops are designed to represent a close match with Sanwa OBSC series pushbutton, plus Seimitsu K and KN series pushbutton.

    Hollow Threading

    The standout feature in the Kori family is its 5mm diameter hollow threading, which easily screws onto the shaft of popular Sanwa JLF series, Seimitsu LS series, and Hori Hayabusa joysticks.  Coupled with a hollow joystick shaft, you can wire a small (3x5mm) new-window-icon.png single white or RGB LED.

  • Product Reviews

    ×

    Write A Review

    1. Awesome looking and works great.

      I bought this balltop to match my translucent blue buttons. I absolutely love the pattern on it and fits my Hayabusa and Sanwa Denshi JLF levers. on Aug 6th 2019

  • Find Similar Products by Category

×
×
// HTML Table Sorting let sortDirection = {}; // Keep track of the sort direction for each column function sortTableByColumn(columnIndex, type) { const table = document.getElementById("sortableTable"); let rows, switching, i, x, y, shouldSwitch; switching = true; // Set the sorting direction to ascending or flip it if already sorting this column let direction = sortDirection[columnIndex] === "asc" ? "desc" : "asc"; sortDirection[columnIndex] = direction; // Store the new direction while (switching) { switching = false; rows = table.rows; // Loop through all table rows (except the first, which contains table headers): for (i = 1; i < (rows.length - 1); i++) { shouldSwitch = false; // Get the two elements you want to compare, one from current row and one from the next: x = rows[i].getElementsByTagName("TD")[columnIndex]; y = rows[i + 1].getElementsByTagName("TD")[columnIndex]; let xContent = x.innerHTML.toLowerCase(); let yContent = y.innerHTML.toLowerCase(); // Type conversion for numeric sort if (type === 'number') { xContent = parseFloat(xContent) || 0; yContent = parseFloat(yContent) || 0; } // Check if the two rows should switch place: if (direction === "asc") { if (xContent > yContent) { shouldSwitch = true; break; } } else if (direction === "desc") { if (xContent < yContent) { shouldSwitch = true; break; } } } if (shouldSwitch) { // If a switch has been marked, make the switch and mark that a switch is done: rows[i].parentNode.insertBefore(rows[i + 1], rows[i]); switching = true; } } }