我正在使用skrollr来创建滚动动画效果。 我的问题是在我的页面底部有一个水平滚动条。我的发现是因为我的 translate:scale()。它创造了一个保证金。
这是我的示例输出
正如您所看到的那样,我的页面不适合浏览器。
这是我的示例代码:
<div class="rows">
<div class="col-md-6 left_detail_field" data-1600="opacity: 0; transform:scale(0);" data-2000="opacity: 1; transform: scale(1)">
<h1 class="text-left">SERVICES</h1>
<p>We promote qualitative transformations of the system trustee business (hardware, software, and infrastructure), and we provide independent system services in processor peripheral field.</p>
<a href="#" class="pull-right link-btn">VIEW DETAILS > </a>
<div class="clearfix"></div>
</div>
<div class="col-md-6 right_kanji_field">
<img src="images/line-2-kanji.png" class="img-responsive" data-1800="opacity: 0; transform: scale(2);" data-1900="opacity: 1; transform: scale(1);" /> <!-- this is the scale that creates the margin gap -->
</div>
</div>
然后这个是具有比例
的图像<img src="images/line-2-kanji.png" class="img-responsive" data-1800="opacity: 0; transform: scale(2);" data-1900="opacity: 1; transform: scale(1);" />
你能帮助我吗?
答案 0 :(得分:1)
您需要使用jquery调整大小并根据窗口大小调整更改缩放比例。示例:
$(window).on('load', function(){
var win = $(this);
if (win.width() < 769) {
$(element).css('transform','scale(0.2)');
}
}