innosetup-compiler-note
Version:
Node wrapper to compile inno setup scripts (.iss)
39 lines (36 loc) • 1.34 kB
HTML
<html>
<body scroll="no" oncontextmenu="return false" ondragstart="return false" onselectstart="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false" onmouseup="document.selection.empty()">
<script>
var NowFrame = 1;
var MaxFrame = 3;
var bStart = 0;
function fnToggle() {
var next = NowFrame + 1;
if(next == MaxFrame+1)
{
NowFrame = MaxFrame;
next = 1;
}
if(bStart == 0)
{
bStart = 1;
setTimeout('fnToggle()', 1000);
return;
}
else
{
oTransContainer.filters[0].Apply();
document.images['oDIV'+next].style.display = "";
document.images['oDIV'+NowFrame].style.display = "none";
oTransContainer.filters[0].Play(duration=2);
if(NowFrame == MaxFrame)
NowFrame = 1;
else
NowFrame++;
} setTimeout('fnToggle()', 3000);
}
fnToggle();
</script>
<div id=oTransContainer style="FILTER: progid:DXImageTransform.Microsoft.Wipe(GradientSize=1.0, wipeStyle=0, motion='forward');position:absolute;left:0px;top:0px; HEIGHT: 314px; WIDTH: 164px "><IMG id=oDIV1 style="DISPLAY: ;" src="1.gif" height=314 width=164 border=0><img id=oDIV2 style="DISPLAY: none;" src="2.gif" height=314 width=164 border=0><img id=oDIV3 style="DISPLAY: none;" src="3.gif" height=314 width=164 border=0></div>
</body>
</html>