このinput
要素があります。
<input type="text" class="textfield" value="" id="subject" name="subject">
それから私は他のテキスト入力、テキストエリアなどのような他のいくつかの要素があります。
ユーザーが#subject
でそのinput
をクリックすると、ページはNiceアニメーションでページの最後の要素までスクロールします。それは上ではなく下へのスクロールであるべきです。
ページの最後の項目は#submit
を持つsubmit
ボタンです。
<input type="submit" class="submit" id="submit" name="submit" value="Ok, Done.">
アニメーションは速すぎてはいけませんし、流動的でなければなりません。
最新のjQueryバージョンを実行しています。私はプラグインをインストールするのではなく、これを達成するためにデフォルトのjQuery機能を使用することを好みます。
IDがbutton
のボタンがあると仮定して、次の例を試してください。
$("#button").click(function() {
$([document.documentElement, document.body]).animate({
scrollTop: $("#elementtoScrollToID").offset().top
}, 2000);
});
記事からコードを入手しましたjQueryプラグインのない要素までスムーズにスクロールします。そして私は以下の例でそれをテストしました。
<html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script>
$(document).ready(function (){
$("#click").click(function (){
$('html, body').animate({
scrollTop: $("#div1").offset().top
}, 2000);
});
});
</script>
<div id="div1" style="height: 1000px; width 100px">
Test
</div>
<br/>
<div id="div2" style="height: 1000px; width 100px">
Test 2
</div>
<button id="click">Click me</button>
</html>
jQuery .scrollTo(): 表示 - デモ、API、ソース
私はこの軽量のプラグインを書いて、ページ/要素のスクロールをもっと簡単にしました。ターゲット要素または指定された値を渡すことができる場所は柔軟です。おそらくこれはjQueryの次の公式リリースの一部になるでしょう、あなたはどう思いますか?
例使用法:
$('body').scrollTo('#target'); // Scroll screen to target element
$('body').scrollTo(500); // Scroll screen 500 pixels down
$('#scrollable').scrollTo(100); // Scroll individual element 100 pixels down
オプション:
scrollTarget:スクロール位置を示す要素、文字列、または数値。
offsetTop:スクロールターゲット上の追加の間隔を定義する数値。
duration:アニメーションの実行時間を決定する文字列または数値。
easing:トランジションに使用するイージング関数を示す文字列。
complete:アニメーションが完成したときに呼び出す関数です。
スムーズなスクロール効果にあまり興味がなく、特定の要素へのスクロールにだけ興味がある場合は、このためにjQuery関数を必要としません。 Javascriptはあなたのケースを網羅しています:
https://developer.mozilla.org/en-US/docs/Web/API/element.scrollIntoView
だからあなたがする必要があるのは$("selector").get(0).scrollIntoView();
です。
JQueryのDOM要素ではなく、JavaScriptのDOM要素を取得するため、.get(0)
が使用されています。
この簡単なスクリプトを使う
if($(window.location.hash).length > 0){
$('html, body').animate({ scrollTop: $(window.location.hash).offset().top}, 1000);
}
ハッシュタグがURLで見つかった場合は、scrollToをIDにアニメートします。ハッシュタグが見つからない場合は、スクリプトを無視してください。
jQuery(document).ready(function($) {
$('a[href^="#"]').bind('click.smoothscroll',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate( {
'scrollTop': $target.offset().top-40
}, 900, 'swing', function () {
window.location.hash = target;
} );
} );
} );
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<ul role="tablist">
<li class="active" id="p1"><a href="#pane1" role="tab">Section 1</a></li>
<li id="p2"><a href="#pane2" role="tab">Section 2</a></li>
<li id="p3"><a href="#pane3" role="tab">Section 3</a></li>
</ul>
<div id="pane1"></div>
<div id="pane2"></div>
<div id="pane3"></div>
SteveとPeterによる解決策は非常にうまくいっています。
しかし場合によっては、値を整数に変換する必要があります。奇妙なことに、$("...").offset().top
からの戻り値は時々float
にあります。
使用:parseInt($("....").offset().top)
例えば:
$("#button").click(function() {
$('html, body').animate({
scrollTop: parseInt($("#elementtoScrollToID").offset().top)
}, 2000);
});
「アニメート」ソリューションのコンパクト版。
$.fn.scrollTo = function (speed) {
if (typeof(speed) === 'undefined')
speed = 1000;
$('html, body').animate({
scrollTop: parseInt($(this).offset().top)
}, speed);
};
基本的な使い方:$('#your_element').scrollTo();
入力要素へのスクロールだけを扱う場合は、focus()
を使用できます。たとえば、最初の表示されている入力までスクロールしたい場合は、次のようにします。
$(':input:visible').first().focus();
あるいはクラス.error
を持つコンテナの最初の可視入力
$('.error :input:visible').first().focus();
Tricia Ball のおかげでこれを指摘できました。
この解決策 あなたはプラグインを必要とせず、閉じた</body>
タグの前にスクリプトを置くこと以外にセットアップ不要があります。
$("a[href^='#']").on("click", function(e) {
e.preventDefault();
$("html, body").animate({
scrollTop: $($(this).attr("href")).offset().top
}, 1000);
});
if ($(window.location.hash).length > 1) {
$("html, body").animate({
scrollTop: $(window.location.hash).offset().top
}, 1000);
}
ロード時に、アドレスにハッシュがある場合は、スクロールします。
そして - あなたがa
ハッシュでhref
リンクをクリックする時はいつでも。 #top
、それをスクロールします。
ほとんどの場合、プラグインを使用するのが最善でしょう。真剣に。 ここで私のことを言えない 。もちろん他にもあります。しかし、そもそもプラグインが必要な落とし穴を本当に避けているかどうかを確認してください。
私はプラグイン 他の場所 を使う理由について書きました。一言で言えば、ここでほとんどの答えを支える一つのライナー
$('html, body').animate( { scrollTop: $target.offset().top }, duration );
悪いUXです。
アニメーションはユーザーの操作に反応しません。ユーザーがクリック、タップ、またはスクロールしようとしても続行します。
アニメーションの開始点がターゲット要素に近い場合、アニメーションは非常に遅くなります。
ターゲット要素がページの下部近くに配置されている場合は、ウィンドウの上部にスクロールすることはできません。スクロールアニメーションは途中で突然停止します。
これらの問題(そして たくさんの人 )を処理するために、私のプラグイン jQuery.scrollable を使うことができます。その後、電話は
$( window ).scrollTo( targetPosition );
以上です。もちろん、 より多くのオプション があります。
目標ポジションに関しては、ほとんどの場合、$target.offset().top
が役目を果たします。しかし、戻り値がhtml
要素の境界を考慮に入れていないことに注意してください( このデモを参照してください )。どのような状況下でも目標位置を正確にする必要がある場合は、使用することをお勧めします。
targetPosition = $( window ).scrollTop() + $target[0].getBoundingClientRect().top;
html
要素に境界線が設定されていてもこれは機能します。
私はjQueryのない方法を知っています:
document.getElementById("element-id").scrollIntoView();
これが私のやり方です。
document.querySelector('scrollHere').scrollIntoView({ behavior: 'smooth' })
どのブラウザでも動作します。
関数に簡単にラップできます
function scrollTo(selector) {
document.querySelector(selector).scrollIntoView({ behavior: 'smooth' })
}
これが実際の例です
$(".btn").click(function() {
document.getElementById("scrollHere").scrollIntoView( {behavior: "smooth" })
})
.btn {margin-bottom: 500px;}
.middle {display: block; margin-bottom: 500px; color: red;}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<button class="btn">Scroll down</button>
<h1 class="middle">You see?</h1>
<div id="scrollHere">Arrived at your destination</div>
非常にシンプルで使いやすいカスタムjQueryプラグイン。クリック可能な要素にscroll=
属性を追加して、スクロールしたいセレクタにその値を設定するだけです。
そのように:<a scroll="#product">Click me</a>
。どの要素にも使用できます。
(function($){
$.fn.animateScroll = function(){
console.log($('[scroll]'));
$('[scroll]').click(function(){
selector = $($(this).attr('scroll'));
console.log(selector);
console.log(selector.offset().top);
$('html body').animate(
{scrollTop: (selector.offset().top)}, //- $(window).scrollTop()
1000
);
});
}
})(jQuery);
// RUN
jQuery(document).ready(function($) {
$().animateScroll();
});
// IN HTML EXAMPLE
// RUN ONCLICK ON OBJECT WITH ATTRIBUTE SCROLL=".SELECTOR"
// <a scroll="#product">Click To Scroll</a>
これはジェネリッククラスセレクターを使ってIDとhrefを抽象化する私のアプローチです。
$(function() {
// Generic selector to be used anywhere
$(".js-scroll-to").click(function(e) {
// Get the href dynamically
var destination = $(this).attr('href');
// Prevent href=“#” link from changing the URL hash (optional)
e.preventDefault();
// Animate scroll to destination
$('html, body').animate({
scrollTop: $(destination).offset().top
}, 500);
});
});
<!-- example of a fixed nav menu -->
<ul class="nav">
<li>
<a href="#section-1" class="nav-item js-scroll-to">Item 1</a>
</li>
<li>
<a href="#section-2" class="nav-item js-scroll-to">Item 2</a>
</li>
<li>
<a href="#section-3" class="nav-item js-scroll-to">Item 3</a>
</li>
</ul>
ターゲットdiv IDにページのスクロールを達成するための簡単な方法
var targetOffset = $('#divID').offset().top;
$('html, body').animate({scrollTop: targetOffset}, 1000);
アニメーション:
// slide to top of the page
$('.up').click(function () {
$("html, body").animate({
scrollTop: 0
}, 600);
return false;
});
// slide page to anchor
$('.menutop b').click(function(){
//event.preventDefault();
$('html, body').animate({
scrollTop: $( $(this).attr('href') ).offset().top
}, 600);
return false;
});
// Scroll to class, div
$("#button").click(function() {
$('html, body').animate({
scrollTop: $("#target-element").offset().top
}, 1000);
});
// div background animate
$(window).scroll(function () {
var x = $(this).scrollTop();
// freezze div background
$('.banner0').css('background-position', '0px ' + x +'px');
// from left to right
$('.banner0').css('background-position', x+'px ' +'0px');
// from right to left
$('.banner0').css('background-position', -x+'px ' +'0px');
// from bottom to top
$('#skills').css('background-position', '0px ' + -x + 'px');
// move background from top to bottom
$('.skills1').css('background-position', '0% ' + parseInt(-x / 1) + 'px' + ', 0% ' + parseInt(-x / 1) + 'px, center top');
// Show hide mtop menu
if ( x > 100 ) {
$( ".menu" ).addClass( 'menushow' );
$( ".menu" ).fadeIn("slow");
$( ".menu" ).animate({opacity: 0.75}, 500);
} else {
$( ".menu" ).removeClass( 'menushow' );
$( ".menu" ).animate({opacity: 1}, 500);
}
});
// progres bar animation simple
$('.bar1').each(function(i) {
var width = $(this).data('width');
$(this).animate({'width' : width + '%' }, 900, function(){
// Animation complete
});
});
もしあなたがオーバーフローコンテナの中でスクロールしたいのであれば(上で答えた$('html, body')
の代わりに)、絶対的なポジショニングで作業しているなら、これはそうする方法です:
var elem = $('#myElement'),
container = $('#myScrollableContainer'),
pos = elem.position().top + container.scrollTop() - container.position().top;
container.animate({
scrollTop: pos
}
$('html, body').animate(...)
は、iPhone、Androidクロームサファリブラウザには表示されません。
ページのルートコンテンツ要素をターゲットにしなければなりませんでした。
$( '#cotnent')。animate(...)
これが私が終わったものです
if (navigator.userAgent.match(/(iPod|iPhone|iPad|Android)/)) {
$('#content').animate({
scrollTop: $("#elementtoScrollToID").offset().top
}, 'slow');
}
else{
$('html, body').animate({
scrollTop: $("#elementtoScrollToID").offset().top
}, 'slow');
}
#content divで配線されたすべてのボディコンテンツ
<html>
....
<body>
<div id="content">
....
</div>
</body>
</html>
var scrollTo = function($parent, $element) {
var topDiff = $element.position().top - $parent.position().top;
$parent.animate({
scrollTop : topDiff
}, 100);
};
これはAtharvaの答えです: https://developer.mozilla.org/en-US/docs/Web/API/element.scrollIntoView 。ドキュメントがiframe内にある場合は追加したいだけで、親フレーム内の要素を選択して表示にスクロールできます。
$('#element-in-parent-frame', window.parent.document).get(0).scrollIntoView();
モジュール scroll-elementnpm install scroll-element
を設定します。それはこのように動作します:
import { scrollToElement, scrollWindowToElement } from 'scroll-element'
/* scroll the window to your target element, duration and offset optional */
let targetElement = document.getElementById('my-item')
scrollWindowToElement(targetElement)
/* scroll the overflow container element to your target element, duration and offset optional */
let containerElement = document.getElementById('my-container')
let targetElement = document.getElementById('my-item')
scrollToElement(containerElement, targetElement)
次のSO投稿からの助けを借りて書かれました。
これがコードです:
export const scrollToElement = function(containerElement, targetElement, duration, offset) {
if (duration == null) { duration = 1000 }
if (offset == null) { offset = 0 }
let targetOffsetTop = getElementOffset(targetElement).top
let containerOffsetTop = getElementOffset(containerElement).top
let scrollTarget = targetOffsetTop + ( containerElement.scrollTop - containerOffsetTop)
scrollTarget += offset
scroll(containerElement, scrollTarget, duration)
}
export const scrollWindowToElement = function(targetElement, duration, offset) {
if (duration == null) { duration = 1000 }
if (offset == null) { offset = 0 }
let scrollTarget = getElementOffset(targetElement).top
scrollTarget += offset
scrollWindow(scrollTarget, duration)
}
function scroll(containerElement, scrollTarget, duration) {
let scrollStep = scrollTarget / (duration / 15)
let interval = setInterval(() => {
if ( containerElement.scrollTop < scrollTarget ) {
containerElement.scrollTop += scrollStep
} else {
clearInterval(interval)
}
},15)
}
function scrollWindow(scrollTarget, duration) {
let scrollStep = scrollTarget / (duration / 15)
let interval = setInterval(() => {
if ( window.scrollY < scrollTarget ) {
window.scrollBy( 0, scrollStep )
} else {
clearInterval(interval)
}
},15)
}
function getElementOffset(element) {
let de = document.documentElement
let box = element.getBoundingClientRect()
let top = box.top + window.pageYOffset - de.clientTop
let left = box.left + window.pageXOffset - de.clientLeft
return { top: top, left: left }
}
$('html, body').animate({scrollTop:
Math.min(
$(to).offset().top-margintop, //margintop is the margin above the target
$('body')[0].scrollHeight-$('body').height()) //if the target is at the bottom
}, 2000);
私はjQueryオブジェクト、CSSセレクタ、または数値のいずれかにスクロールする汎用関数を書きました。
使用例
// scroll to "#target-element":
$.scrollTo("#target-element");
// scroll to 80 pixels above first element with class ".invalid":
$.scrollTo(".invalid", -80);
// scroll a container with id "#my-container" to 300 pixels from its top:
$.scrollTo(300, 0, "slow", "#my-container");
関数のコード:
/**
* Scrolls the container to the target position minus the offset
*
* @param target - the destination to scroll to, can be a jQuery object
* jQuery selector, or numeric position
* @param offset - the offset in pixels from the target position, e.g.
* pass -80 to scroll to 80 pixels above the target
* @param speed - the scroll speed in milliseconds, or one of the
* strings "fast" or "slow". default: 500
* @param container - a jQuery object or selector for the container to
* be scrolled. default: "html, body"
*/
jQuery.scrollTo = function (target, offset, speed, container) {
if (isNaN(target)) {
if (!(target instanceof jQuery))
target = $(target);
target = parseInt(target.offset().top);
}
container = container || "html, body";
if (!(container instanceof jQuery))
container = $(container);
speed = speed || 500;
offset = offset || 0;
container.animate({
scrollTop: target + offset
}, speed);
};
2019年の答えを更新しました:
$('body').animate({
scrollTop: $('#subject').offset().top - $('body').offset().top + $('body').scrollTop()
}, 'fast');
要素全体を表示するには(現在のウィンドウサイズで可能ならば):
var element = $("#some_element");
var elementHeight = element.height();
var windowHeight = $(window).height();
var offset = Math.min(elementHeight, windowHeight) + element.offset().top;
$('html, body').animate({ scrollTop: offset }, 500);
ユーザーが#subjectを使用してその入力をクリックすると、ページはNiceアニメーションでページの最後の要素までスクロールするはずです。それは上ではなく下へのスクロールであるべきです。
ページの最後の項目は#submitの送信ボタンです。
$('#subject').click(function()
{
$('#submit').focus();
$('#subject').focus();
});
これは最初に#submit
までスクロールダウンし、次にクリックされた入力にカーソルを戻します。これはスクロールダウンを模倣し、ほとんどのブラウザで動作します。純粋なJavaScriptで記述できるため、jQueryも必要ありません。
focus
関数を使用するというこのやり方は、focus
呼び出しを連鎖させることによって、より良い方法でアニメーションを模倣することができます。私はこの理論をテストしていませんが、それは次のようになります。
<style>
#F > *
{
width: 100%;
}
</style>
<form id="F" >
<div id="child_1"> .. </div>
<div id="child_2"> .. </div>
..
<div id="child_K"> .. </div>
</form>
<script>
$('#child_N').click(function()
{
$('#child_N').focus();
$('#child_N+1').focus();
..
$('#child_K').focus();
$('#child_N').focus();
});
</script>
それが価値があるもののために、これは私がスクロールでDIVの中にあることができる一般的な要素のためにそのような振る舞いを成し遂げる方法です。私たちの場合は、本文全体をスクロールするのではなく、オーバーフローのある特定の要素だけをスクロールします。より大きなレイアウト内。
ターゲット要素の高さの偽の入力を作成し、それにフォーカスを置きます。ブラウザは、スクロール可能な階層内の深さに関係なく、残りの部分に注意を払います。魅力のように働きます。
var $scrollTo = $('#someId'),
inputElem = $('<input type="text"></input>');
$scrollTo.prepend(inputElem);
inputElem.css({
position: 'absolute',
width: '1px',
height: $scrollTo.height()
});
inputElem.focus();
inputElem.remove();
jQuery(document).ready(function($) {
$('a[href^="#"]').bind('click.smoothscroll',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate( {
'scrollTop': $target.offset().top-40
}, 900, 'swing', function () {
window.location.hash = target;
} );
} );
} );
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<ul role="tablist">
<li class="active" id="p1"><a href="#pane1" role="tab">Section 1</a></li>
<li id="p2"><a href="#pane2" role="tab">Section 2</a></li>
<li id="p3"><a href="#pane3" role="tab">Section 3</a></li>
</ul>
<div id="pane1"></div>
<div id="pane2"></div>
<div id="pane3"></div>
これは私のために働いた:
var targetOffset = $('#elementToScrollTo').offset().top;
$('#DivParent').animate({scrollTop: targetOffset}, 2500);