Fun in Motion Toys
Bringing you a selection of magnetic puzzle cubes and fidget toys! From the Shashibo, a complex magnetic geometric 3D puzzle, to the Cubendi, Duomoto and now the Shashibo²!
Innovative puzzles that teach thinking skills, logic, deductive reasoning, analytical reasoning, and problem-solving.
Shashibo vs. Cubendi vs. Duomoto
Shashibo - 36 Magnets/Stable Structures/Equal parts Toy & Puzzle/Hinges & Folds/Structured
Cubendi - 48 Magnets/Moving Structures/More toy/Twists & turns/Flexible
Duomoto - 96 Magnets/Stable & Moving Combinations/More Puzzle/Division & Reflection/Flexible & Structured
Compatability
Yes: Shashibo and Shashibo²

{
const queryString = new URLSearchParams(new FormData($refs.filter_form)).toString();
let pattern = /[?&]sort_by=/;
let collUrl = location.search;
let newUrl = queryString;
if(pattern.test(collUrl)) {
const theString = window.location.search;
const urlParams = new URLSearchParams(theString);
const sorty = urlParams.get('sort_by')
newUrl = queryString + '&sort_by=' + sorty;
console.log(sorty);
}
console.log(queryString);
console.log(newUrl);
loading = true;
fetch('/collections/fun-in-motion-toys?' + newUrl)
.then(response => response.text())
.then(data => {
let html_div = document.createElement('div');
html_div.innerHTML = data;
let html_dom = html_div.querySelector('#dataMix').innerHTML;
document.querySelector('#dataMix').innerHTML = html_dom;
// update url without refreshing the page
history.replaceState(null, null, '?' + newUrl);
})
.catch(error => console.error('Error:', error))
.finally(() => loading = false);
})"
>