显示计划表:我想要的和我已经做过的事情:
示例见这里: http://www.clipp.de/V/EndlessScrollEinfach.html
什么是更好的方法? 也许转换页面首先在Jpeg中显示然后显示它。 但是我如何在jpeg或png中转换html?
是否可以在后台加载页面?我需要在每次完整动画后刷新内容。
感谢您的想法和帮助。
$("#idIframeHeute1").load(function() {
this.style.height =
this.contentWindow.document.body.offsetHeight + 'px';
heightTodayTable = this.contentWindow.document.body.offsetHeight;
// alert("totalHeight: " + totalHeight + ", hHeute:" + hHeute);
if(totalHeight <= (heightTodayTable))
{
$(".rectangle").animate({
bottom: heightTodayTable // Width
}, scrollTime, 'linear' ); // Tempo
}
else
{
$("#idIframeHeute2").hide();
$("#heuteDiv").css({
position:'absolute',
top: 50
});
}
});
&#13;
答案 0 :(得分:0)
为什么不尝试ajax而不是iframe。由于它不是跨域,因此可以并且可以顺利运行。
$('#heuteDiv').load('VertretungsplanHeute.html').css({'height':'4804px'});
我想这样的事情可以使你的工作更顺畅。