- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
// MiniNews
if($(".news_sl-column.gallery").size()) {
$(".minigal-nav .counter").text("1 из " + $(".news_sl-column.gallery").find("li").size());
$(".minigal-nav li.next").on("click", function() {
var index = $(".news_sl-column.gallery li.current").index();
index++;
if(index > $(".news_sl-column.gallery").find("li").size() - 1) {
index = 0;
}
switchImage(index);
});
if (window.isWindowsPhone){
$(".news_sl-column.gallery img").attr("onclick", '$(".minigal-nav li.next").trigger("click");');
} else {
$(".news_sl-column.gallery img").on("click", function() {
$(".minigal-nav li.next").trigger("click");
});
}
if (window.isWindowsPhone){
$(".minigal-nav li.prev").attr("onclick", 'var index = $(".news_sl-column.gallery li.current").index(); index--; if(index < 0) { index = $(".news_sl-column.gallery").find("li").size() - 1;} switchImage(index);');
} else {
$(".minigal-nav li.prev").on("click", function() {
var index = $(".news_sl-column.gallery li.current").index();
index--;
if(index < 0) {
index = $(".news_sl-column.gallery").find("li").size() - 1;
}
switchImage(index);
});
}
var switchImage = function(index) {
$(".news_sl-column.gallery li.current").fadeOut(function() {
$(this).removeClass("current");
$(".news_sl-column.gallery").find("li").eq(index).fadeIn().addClass("current");
});
$(".minigal-texts li.current").fadeOut(function() {
$(this).removeClass("current");
$(".minigal-texts").find("li").eq(index).fadeIn().addClass("current");
});
$(".minigal-nav .counter").text(index + 1 + " из " + $(".news_sl-column.gallery").find("li").size());
}
}
// endof MiniNews
minusator41 13.03.2014 16:02 # −40
guest 14.03.2014 12:26 # 0
wvxvw 14.03.2014 23:39 # −1
miwomare 25.08.2021 07:30 # 0