Widget:A2Sequence: Unterschied zwischen den Versionen

aus Kamelopedia, der wüsten Enzyklopädie
Zur Navigation springen Zur Suche springen
 
(17 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
<script>
+
<script>
$("#a2image").css("overflow","hidden").css("font-size","200%").css("position","relative");
+
var goto = parseInt("<!--{$goto|escape:'javascript'}-->");
h=$("#a2image").height() + $("#a2image").offset().top;
+
var nextPage = function() {
$("#a2textSequence").offset({top:h})
+
    clearInterval(a2.sequenceInterval);
 +
    $("#a2text").empty();
 +
    if ("<!--{$goto|escape:'javascript'}-->")
 +
        a2.util.goto(goto);
 +
};
  
if ($("#a2image").length && $("#a2textSequence").length)
+
if ($("#a2textFrame").length && $("#a2textSequence").length) {
    a2.sequenceInterval = setInterval(function () {
+
    a2.log("a");
        if($("#a2textSequence").position().top > - $("#a2textSequence").height()) {
+
    $("#a2textFrame").css("overflow","hidden").css("font-size","200%").css("position","relative");
            var n = $("#a2textSequence").offset().top - 2;
+
    var h=$("#a2textFrame").height() + $("#a2textFrame").offset().top;
            $("#a2textSequence").offset({top:n});
+
    $("#a2textSequence").offset({top:h});
        } else {
+
 
            clearInterval(a2.sequenceInterval);
+
    var $link = $('<a class="pseudolink">Sequenz überspringen</a>');
        }
+
    $("#a2text").empty().append($link);
    }, 120);
+
    $link.click(function(){
</script>
+
        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>

Aktuelle Version vom 27. August 2012, 21:09 Uhr

<script>
var goto = parseInt("");
var nextPage = function() {
    clearInterval(a2.sequenceInterval);
    $("#a2text").empty();
    if ("")
        a2.util.goto(goto);
};
if ($("#a2textFrame").length && $("#a2textSequence").length) {
    a2.log("a");
    $("#a2textFrame").css("overflow","hidden").css("font-size","200%").css("position","relative");
    var h=$("#a2textFrame").height() + $("#a2textFrame").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>