浏览器显示相同Jquery代码的不同结果

时间:2014-04-01 08:10:03

标签: jquery html css internet-explorer firefox

我尝试为页面创建UI Safari选项卡。

请使用Chrome,IE和Firefox(全部)访问this页面它的安全(如果不可能,请参阅下面的图片)。
正如您所看到的,只有chrome能够完美地向我展示Jquery结果。它在Firefox中仍然很好,因为内容是可见的,但在IE中,向下滚动后的事物(图像)根本不可见。

请为我提供解决方案。在此先感谢。

Right click and click on "open image in new tab"右键单击并单击"在新选项卡中打开图像" (然后放大)

这是用于每个图像的代码:

<script type="text/javascript">
$(document).ready(function(){
var repeataction= function() { 
var height=$(window).height(); 
var position=$("#imagett1").position(); 
var percent=position.top/height*100; 
if(position.top>-750){
$("#imagett1").height(percent*2 +550);

if(percent>50){$("#imagett1").height((100-percent)*2 +550)}; };

};
var timeOut= setInterval(repeataction, 1); 
});
</script>

0 个答案:

没有答案