Legions Imperialis
Sortierung
Filter
Preis
€
―
€
"use strict";
var keypressSlider = document.querySelector(".slider-keypress");
var input0 = document.querySelector(".input-with-keypress-0");
var input1 = document.querySelector(".input-with-keypress-1");
var inputs = [input0, input1];
noUiSlider.create(keypressSlider, {
start: [15.75, 144.5],
connect: true,
range: {
min: [15.75],
max: [144.5]
}
});
keypressSlider.noUiSlider.on("update", function(values, handle) {
inputs[handle].value = values[handle];
function setSliderHandle(i, value) {
var r = [null, null];
r[i] = value;
keypressSlider.noUiSlider.set(r);
}
inputs.forEach(function(input, handle) {
input.addEventListener("change", function() {
setSliderHandle(handle, this.value);
});
input.addEventListener("keydown", function(e) {
var values = keypressSlider.noUiSlider.get();
var value = Number(values[handle]);
var steps = keypressSlider.noUiSlider.steps();
var step = steps[handle];
var position;
switch (e.which) {
case 13: setSliderHandle(handle, this.value); break;
case 38: position = step[1]; if (position === false) { position = 1; } if (position !== null) {setSliderHandle(handle, value + position); } break;
case 40: position = step[0]; if (position === false) { position = 1; } if (position !== null) { setSliderHandle(handle, value - position); } break;
}
});
});
});
Verfügbarkeit
Hersteller
Sprache
Kategorien
Kategorien
- Legions Imperialis Solar Auxilia Marauder Destroyers [GW WEB EXKLUSIV]41,00 EUR ** inkl. MwSt. zzgl. Versand
- Legions Imperialis Solar Auxilia Lightning Fighter Squadron [GW WEB EXKLUSIV]41,00 EUR ** inkl. MwSt. zzgl. Versand
- Legions Imperialis Reaver Battle Titan with Power Fist and Gatling Blaster [GW WEB EXKLUSIV]51,25 EUR ** inkl. MwSt. zzgl. Versand
- Legions Imperialis Cerastus Knights Lancer [GW WEB EXKLUSIV]30,00 EUR ** inkl. MwSt. zzgl. Versand
- -10%Legions Imperialis Civitas Imperialis Administratum Sector
Statt 130,00 EUR117,00 EUR ** inkl. MwSt. zzgl. Versand - -10%Legions Imperialis Civitas Imperialis Ruined Buildings
Statt 60,00 EUR54,00 EUR ** inkl. MwSt. zzgl. Versand - -10%Legions Imperialis Legiones Astartes Thunderhawk Gunship
Statt 41,00 EUR36,90 EUR ** inkl. MwSt. zzgl. Versand - -10%Legions Imperialis Reaver Titan with Melta Cannon
Statt 50,00 EUR45,00 EUR ** inkl. MwSt. zzgl. Versand - -10%Legions Imperialis Warlord Titan with Plasma Annihilator
Statt 90,00 EUR81,00 EUR ** inkl. MwSt. zzgl. Versand - -10%
- -10%Legions Imperialis Solar Auxilia Baneblade Tank Squadron
Statt 41,00 EUR36,90 EUR ** inkl. MwSt. zzgl. Versand - -10%Legions Imperialis Legiones Astartes Rhino Transport Detachment
Statt 40,00 EUR36,00 EUR ** inkl. MwSt. zzgl. Versand - -10%Legions Imperialis Legiones Astartes Infantry
Statt 40,00 EUR36,00 EUR ** inkl. MwSt. zzgl. Versand - -10%Legions Imperialis Legiones Astartes Kratos Heavy Tank Squadron
Statt 41,00 EUR36,90 EUR ** inkl. MwSt. zzgl. Versand - -7%Warhammer The Horus Heresy Legions Imperialis Starterset (Englisch)
Statt 155,00 EUR144,50 EUR ** inkl. MwSt. zzgl. Versand
Preis
€
―
€
"use strict";
var keypressSlider = document.querySelector(".slider-keypress");
var input0 = document.querySelector(".input-with-keypress-0");
var input1 = document.querySelector(".input-with-keypress-1");
var inputs = [input0, input1];
noUiSlider.create(keypressSlider, {
start: [15.75, 144.5],
connect: true,
range: {
min: [15.75],
max: [144.5]
}
});
keypressSlider.noUiSlider.on("update", function(values, handle) {
inputs[handle].value = values[handle];
function setSliderHandle(i, value) {
var r = [null, null];
r[i] = value;
keypressSlider.noUiSlider.set(r);
}
inputs.forEach(function(input, handle) {
input.addEventListener("change", function() {
setSliderHandle(handle, this.value);
});
input.addEventListener("keydown", function(e) {
var values = keypressSlider.noUiSlider.get();
var value = Number(values[handle]);
var steps = keypressSlider.noUiSlider.steps();
var step = steps[handle];
var position;
switch (e.which) {
case 13: setSliderHandle(handle, this.value); break;
case 38: position = step[1]; if (position === false) { position = 1; } if (position !== null) {setSliderHandle(handle, value + position); } break;
case 40: position = step[0]; if (position === false) { position = 1; } if (position !== null) { setSliderHandle(handle, value - position); } break;
}
});
});
});