我不能在一个非常小的Iframe中使用Slimscroll?

时间:2014-05-13 11:29:39

标签: javascript jquery html css iframe

我正在尝试使用我制作的小型Iframe来处理我的代码。它必须使用的网站在Enjin网络上运行,它不允许使用PHP,因此我不得不使用Iframe来使PHP工作。它现在在加载数据时显示加载gif,并且完全正常。

然而, 我想要的是这个加载gif和Slimscroll工作。我不能让这两个人一起工作,也不能让Slimscroll工作。我必须使用一个有限的HTML编辑器,允许使用脚本(我相信),但按照我无法使其工作的步骤!

这是我的代码

 <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script type="text/javascript" src="libs/jquery.slimscroll.min.js"></script>
<script>
$(function(){
    $('#inner-content-div').slimScroll({
        height: '250px'
    });
});
</script>

<div id="loadImg" style="background-image: url(http://sander.server2.tmg-clan.com/loading.gif); 
                                    background-repeat: no-repeat; 
                                    background-position: center; 
                                    background-size: 64px 64px;
                                    ">
<div name="scroll" onload="document.getElementById('inner-content-div');">
<iframe border="0" name="iframe" src="http://sander.server2.tmg-clan.com" onload="document.getElementById('loadImg').style.backgroundImage='none';" scrolling="non></iframe>
</div>
</div>

我做错了什么?我需要添加什么?它运行的网站是: The Brothers Production network我的代码是右边的顶部栏!

请帮帮我!

0 个答案:

没有答案