セール

Sphero littleBits o25 DC motor

元の価格は ¥374 でした。現在の価格は ¥187 です。

カテゴリー:

littleBits o25 DC motor
littleBits o25 DC motor

cross axle

D shaft

The DC (or “direct current”) motor rotates a small cross axle shaft you can attach anything to. It also works with all littleBits accessories that have cross axle openings. Try attaching a wheel ! Use it to spin, turn, twist, and roll.

The DC (or “direct current”) motor rotates a small cross axle shaft you can attach anything to. It also works with all littleBits accessories that have cross axle openings. Try attaching a wheel ! Use it to spin, turn, twist, and roll.

// Shared SKU Map
var skuMap = {
‘650-0142’: {
title: ‘vtitle01’,
subtitle: ‘vsub01’,
description: ‘vdescr01’
},
‘650-0029’: {
title: ‘vtitle02’,
subtitle: ‘vsub02’,
description: ‘vdescr02’
},
// Add more mappings as needed
};

// Update title based on SKU
var skuTitleElement = document.querySelector(‘.product-meta__sku-number’);
var titleElement = document.querySelector(‘.product-meta__title’);

function updateTitleBasedOnSKU(skuMap) {
var skuNumberTitle = skuTitleElement.textContent.trim();

if (skuMap.hasOwnProperty(skuNumberTitle)) {
var divId = skuMap[skuNumberTitle].title;
var divContent = document.getElementById(divId);

if (divContent) {
titleElement.textContent = divContent.textContent.trim();
var inlineStyles = divContent.getAttribute(‘style’);
titleElement.setAttribute(‘style’, inlineStyles);
divContent.style.display = ‘block’;
}
}
}

updateTitleBasedOnSKU(skuMap);

// Update subtitle based on SKU
var skuSubtitleElement = document.querySelector(‘.product-meta__sku-number’);
var skuElement = document.querySelector(‘.product-meta__sku’);

レビュー

レビューはまだありません。

“Sphero littleBits o25 DC motor” の口コミを投稿します

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

上部へスクロール