背景画像を浮かばせるプラグインを使用して、上下に浮かせることは
実現したのですが、今のままでは動きが若干早いので、滑らかな動きに
すべく進む値を細かく取得しようと考えています。
どうかヒントだけでもお願いします。
そしてこちらがダウンロード先のURLとそのバージョンです。↓
URL:リンク内容
Version3.1.0
HTML5
1コード 2<div class="visual"> 3 <ul id="scene" data-friction-x="0" data-friction-y="0.01" data- 4 scalar-x="0" data-scalar-y="32"> 5 <li class="layer" data-depth="1"> 6 <div class="bg"></div></li> 7 </ul> 8</div> 9 <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> 10 <script src="js/parallax.min.js"></script> 11 <script src="js/script.js"></script>
CSS3
1コード 2.visual #scene { 3 position: absolute; 4 left: 0; 5 top: 0; 6 right: 0; 7 bottom: 0; 8 z-index: 0; 9 overflow: hidden; 10} 11 12.visual #scene li { 13 width: 100%; 14 height: 100%; 15 display: block; 16 position: absolute; 17 z-index: 6; 18 right: 0; 19 bottom: 0; 20 background: url(../images/toaru-accera.jpg); 21 background-repeat: no-repeat; 22 background-size: cover; 23} 24 25.bg { 26 text-align: center; 27 color: #ffffff; 28 margin-top: 50px; 29}
javascript
1コード 2var demo = document.getElementById("scene"); 3 var parallax = new Parallax(scene); 4$(function() { 5 $("#scene").parallax(); 6 });
リンクです。リンク内容
回答1件
あなたの回答
tips
プレビュー