Widget:A2Sequence: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
J* (Diskussion | Beiträge) |
J* (Diskussion | Beiträge) |
||
| Zeile 1: | Zeile 1: | ||
<script> | <script> | ||
var goto = parseInt("<!--{$goto|escape:'javascript'}-->"); | var goto = parseInt("<!--{$goto|escape:'javascript'}-->"); | ||
| + | var nextPage = function() { | ||
| + | clearInterval(a2.sequenceInterval); | ||
| + | $("#a2text").empty(); | ||
| + | if ("<!--{$goto|escape:'javascript'}-->") | ||
| + | a2.util.goto(goto); | ||
| + | }; | ||
| + | |||
if ($("#a2image").length && $("#a2textSequence").length) { | if ($("#a2image").length && $("#a2textSequence").length) { | ||
a2.log("a"); | a2.log("a"); | ||
| Zeile 9: | Zeile 16: | ||
var $link = $('<a class="pseudolink">Sequenz überspringen</a>'); | var $link = $('<a class="pseudolink">Sequenz überspringen</a>'); | ||
$("#a2text").empty().append($link); | $("#a2text").empty().append($link); | ||
| − | $link.click(function(){ | + | $link.click(function(){ |
| + | nextPage(); | ||
| + | }); | ||
a2.sequenceInterval = setInterval(function () { | a2.sequenceInterval = setInterval(function () { | ||
| Zeile 21: | Zeile 30: | ||
$("#a2textSequence").offset({top:n}); | $("#a2textSequence").offset({top:n}); | ||
} else { | } else { | ||
| − | + | nextPage(); | |
| − | |||
| − | |||
| − | |||
} | } | ||
}, 120); | }, 120); | ||
Version vom 12. Juli 2012, 18:28 Uhr
<script>
var goto = parseInt("");
var nextPage = function() {
clearInterval(a2.sequenceInterval);
$("#a2text").empty();
if ("")
a2.util.goto(goto);
};
if ($("#a2image").length && $("#a2textSequence").length) {
a2.log("a");
$("#a2image").css("overflow","hidden").css("font-size","200%").css("position","relative");
var h=$("#a2image").height() + $("#a2image").offset().top;
$("#a2textSequence").offset({top:h});
var $link = $('<a class="pseudolink">Sequenz überspringen</a>');
$("#a2text").empty().append($link);
$link.click(function(){
nextPage();
});
a2.sequenceInterval = setInterval(function () {
if (!$("#a2textSequence").length) {
clearInterval(a2.sequenceInterval);
return;
}
if($("#a2textSequence").position().top > - $("#a2textSequence").height()) {
var n = $("#a2textSequence").offset().top - 2;
$("#a2textSequence").offset({top:n});
} else {
nextPage();
}
}, 120);
} else {
a2.log("b");
}
</script>