0
私はdivをユーザーが垂直にスクロールするときに右から左に移動するスクリプトを作成しようとしています。これは "sidepara"のクラスを持つdivにこの効果をもたらすはずです。表示されている(ユーザーがスクロールしている)場合にのみdivを移動する必要があります。私は数学の権利を得るのに苦労しています... divを水平スクロール位置に比例して動かす正しい式は何ですか?最後に数学を考え出し垂直方向にスクロールするときにDIVを水平方向に移動
$(function() {
$(window).scroll(function() {
console.clear();
$(".sidepara").each(function() {
var sY = $(this).position().top - $(window).scrollTop(),
dY = $(this).position().top,
wH = window.innerHeight;
var scrollPercent = (sY/(dY - wH));
var position = (scrollPercent * ($(document).width()));
position = window.innerWidth - position;
$(this).css("margin-left", position);
console.log("scoll Y: " + sY);
console.log("div Y: " + dY);
console.log("div X: " + position);
console.log("window height: " + wH);
console.log("scrollPercent: " + scrollPercent);
console.log("----");
//print number for debugging
$(this).html(position);
});
})
});
html,
body {
margin: 0;
padding: 0;
}
.stretch {
height: 2000px;
}
.sidepara {
color: red;
}
.parallaxContainer {
overflow: hidden;
width: 100%;
height: 256px;
background: black;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="stretch"></div>
<div class="parallaxContainer">
<!-- <img src="helloworld.png" class="sidepara" /> -->
<div class="sidepara"></div>
</div>
<div class="stretch"></div>
<div class="parallaxContainer">
<!-- <img src="helloworld.png" class="sidepara" /> -->
<div class="sidepara"></div>
</div>
<div class="stretch"></div>
<div class="parallaxContainer">
<!-- <img src="helloworld.png" class="sidepara" /> -->
<div class="sidepara"></div>
</div>
<div class="stretch"></div>
私はdiv要素がビューポート内にあるとき、あなたの数学を適用するには、あなたを助言します。 divがビューポートにあるかどうかを確認するには、[この回答](https://stackoverflow.com/a/7557433/4543207) – Redu
にお問い合わせください。私は見てみましょう! – bwoogie