<label for="input1">
<span>Поле</span>
<input type="text" id="input1">
</label>
<label for="input2">
<span>Поле</span>
<input type="text" id="input2">
</label>
<label for="input3">
<span>Поле</span>
<input type="text" id="input3">
</label>
<label for="input4">
<span>Поле</span>
<input type="text" id="input4">
</label>
this.prevSlide = function() {
if (currentSlideIndex == 0) {
currentSlideIndex = countImages - 1;
_self._activate();
return;
}
currentSlideIndex--;
_self._activate();
};
this.nextSlide = function() {
if (currentSlideIndex == countImages - 1) {
currentSlideIndex = 0;
_self._activate();
return;
}
currentSlideIndex++;
_self._activate();
};