我有一个问题。我使用Close Current Tab插件进行自定义滚动条,并将其设置为显示在iframe中,但我无法在Y轴或X轴上滚动。内容不会加载。 (?)我使用了this示例并将高度设置为100%。这是我到目前为止所得到的:
<div id="iframecontainer" style="height: 100%; position: relative; overflow-x:hidden;
overflow-y:hidden;">
<iframe src="http://imgur.com/a/LqmeJ?gallery" scrolling="no" width="1000" height="100%" frameborder="0"></iframe>
</div>
//I use this javascript code to run the scrollbar plugin.
//I also include its files in <head> tag.
<script type="text/javascript">
$(window).load(function(){
$('#iframecontainer').mCustomScrollbar({
theme:"minimal-dark", scrollInertia: 0, axis:"yx"
});
});
</script>
答案 0 :(得分:1)
我现在找到了一个解决方法,我将高度设置为99999px,我可以无休止地滚动网站,但这没关系,因为其他一切都有效。似乎没有其他方法可以解决这个问题。