私のコードは http://jsfiddle.net/mannagod/QT3v5/7/ にあります。
JSは次のとおりです。
_function delay() {
var INTENDED_MONTH = 7 //August
// INTENDED_MONTH is zero-relative
now = new Date().getDate(),
rows = document.getElementById('scripture').rows;
if (new Date().getMonth() != INTENDED_MONTH) {
// need a value here less than 1,
// or the box for the first of the month will be in Red
now = 0.5
};
for (var i = 0, rl = rows.length; i < rl; i++) {
var cells = rows[i].childNodes;
for (j = 0, cl = cells.length; j < cl; j++) {
if (cells[j].nodeName == 'TD'
&& cells[j].firstChild.nodeValue != ''
&& cells[j].firstChild.nodeValue == now) {
// 'ffff99' // '#ffd700' // TODAY - red
rows[i].style.backgroundColor = 'red'
rows[i].scrollIntoView();
}
}
}
}
_
.scrollintoview()
を滑らかにする方法を見つける必要があります。現在、強調表示された行に「ジャンプ」します。その行にスムーズに移行するために必要です。 scrollintoviewの代わりに動的に実行する必要があります。何か案は?ありがとう。
ここにリンクがあります 私のブログ投稿へ これはすべてを説明し、プラグインを入手できるGitHubプロジェクトへのリンクがあります。
scrollintoview()
jQueryプラグイン。最新のブラウザ( ChromeとFirefox、ただしSafari、UC、またはIEではない )では、オブジェクトのオプションを.scrollIntoView()
に渡すことができます。
これを試して:
Elm.scrollIntoView({ behavior: 'smooth', block: 'center' })
その他の値はbehavior: 'instant'
またはblock: 'start'
またはblock: 'end'
。 https://developer.mozilla.org/en/docs/Web/API/Element/scrollIntoView を参照してください
私もこの問題を探していて、この解決策を見つけました:
$('html, body').animate({
scrollTop: $("#elementId").offset().top
}, 1000);
リソース: http://www.abeautifulsite.net/smoothly-scroll-to-an-element-without-a-jquery-plugin-2/
この機能を実装するためだけにjQueryを追加したくないかもしれません。 elemはスクロールされる要素です。移動先の位置は、ビューに移動する要素のoffsetTopプロパティから取得できます。
function Scroll_To(elem, pos)
{
var y = elem.scrollTop;
y += (pos - y) * 0.3;
if (Math.abs(y-pos) < 2)
{
elem.scrollTop = pos;
return;
}
elem.scrollTop = y;
setTimeout(Scroll_To, 40, elem, pos);
}
JQueryを使用せずに特定の期間にわたってrequestAnimationFrame
を使用してスムーズにスクロールします。
デモ: http://codepen.io/Shadeness/pen/XXyvKG?editors=001
window.bringIntoView_started = 0;
window.bringIntoView_ends = 0;
window.bringIntoView_y = 0;
window.bringIntoView_tick = function() {
var distanceLeft, dt, duration, t, travel;
t = Date.now();
if (t < window.bringIntoView_ends) {
dt = t - window.bringIntoView_started;
duration = window.bringIntoView_ends - window.bringIntoView_started;
distanceLeft = window.bringIntoView_y - document.body.scrollTop;
travel = distanceLeft * (dt / duration);
document.body.scrollTop += travel;
window.requestAnimationFrame(window.bringIntoView_tick);
} else {
document.body.scrollTop = window.bringIntoView_y;
}
};
window.bringIntoView = function(e, duration) {
window.bringIntoView_started = Date.now();
window.bringIntoView_ends = window.bringIntoView_started + duration;
window.bringIntoView_y = Math.min(document.body.scrollTop + e.getBoundingClientRect().top, document.body.scrollHeight - window.innerHeight);
window.requestAnimationFrame(window.bringIntoView_tick);
};
例えば:
bringIntoView(document.querySelector('#bottom'), 400)
dt
(deltaTime)が大きくなると速度が上がり、distanceLeft
getが小さくなると速度が遅くなります。ユーザーがスクロールしてもループを壊すことを検討しましたが、まあまあです。グローバル変数は、前の呼び出しが完全に引き継ぐことを防ぎますが、前の再帰ループをキャンセルしないため、2倍の速度でアニメーション化します。
このポリフィルを含めるだけで機能します。
https://github.com/iamdustan/smoothscroll
<script src="js/smoothscroll.js"></script>
または、npmを使用する場合は必要です。
require('smoothscroll-polyfill').polyfill();
ネイティブのscrollIntoViewメソッドを使用します。
document.getElementById('parallax-group-logo').scrollIntoView({
block: "start",
behavior: "smooth"
});
これを試して:
function scroll_into_view_smooth(elem)
{ var FPS = 48; // frames per second
var DURATION = 0.6; // sec
var e = elem;
var left = e.offsetLeft;
var top = e.offsetTop;
var width = e.offsetWidth;
var height = e.offsetHeight;
var body = document.body;
var to_scroll = [];
var p, offset;
while ((p = e.offsetParent))
{ var client_width = p.clientWidth;
var client_height = p!=body ? p.clientHeight : Math.min(document.documentElement.clientHeight, window.innerHeight);
if (client_width<p.scrollWidth-1 && ((offset=left-p.scrollLeft)<0 || (offset=left+width-p.scrollLeft-client_width)>0))
{ to_scroll.Push({elem: p, prop: 'scrollLeft', from: p.scrollLeft, offset: offset});
}
if (client_height<p.scrollHeight-1 && ((offset=top-p.scrollTop)<0 || (offset=top+height-p.scrollTop-client_height)>0))
{ to_scroll.Push({elem: p, prop: 'scrollTop', from: p.scrollTop, offset: offset});
}
e = p;
left += e.offsetLeft;
top += e.offsetTop;
}
var x = 0;
function apply()
{ x = Math.min(x+1/(DURATION * FPS), 1);
for (var i=to_scroll.length-1; i>=0; i--)
{ to_scroll[i].elem[to_scroll[i].prop] = to_scroll[i].from + to_scroll[i].offset*x*x;
}
if (x < 1)
{ setTimeout(apply, 1000/FPS);
}
}
apply();
}
誰かを助けるためにこれに追加するために、
IOS用のPWAで作業していたAndroidおよびscrollIntoViewOptions
オブジェクトがSafariでサポートされていないことがわかるまでscrollIntoView()
メソッドを使用していました。スクロールなどをスムーズにしません。
私はscrollIntoView
の機能を、スムーズなスクロールと「最も近い」オプションで、プレーンJSのiOSで...まあ、プレーンTypeScript ...
クリックハンドラーまたはw/e:
const element = *elementToScrollIntoView*;
const scrollLayer = *layerToDoTheScrolling*
if (/iPad|iPhone|iPod/.test(navigator.userAgent) {
let position;
const top = element.offsetTop - scrollLayer.scrollTop;
if (element.offsetTop < scrollLayer.scrollTop) {
// top of element is above top of view - scroll to top of element
position = element.offsetTop;
} else if (element.scrollHeight + top < scrollLayer.offsetHeight) {
// element is in view - don't need to scroll
return;
} else if (element.scrollHeight > scrollLayer.offsetHeight) {
// element is bigger than view - scroll to top of element
position = element.offsetTop;
} else {
// element partially cut-off - scroll remainder into view
const difference = scrollLayer.offsetHeight - (element.scrollHeight + top);
position = scrollLayer.scrollTop - difference;
}
// custom function for iOS
scrollToElement(scrollLayer, position, 200);
} else {
// just use native function for Android
element.scrollIntoView({ behavior: 'smooth', block: 'nearest', inline: 'nearest' });
}
手動スクロール機能:
scrollToElement(scrollLayer, destination, duration) {
if (duration <= 0) {
return;
}
const difference = destination - scrollLayer.scrollTop;
const perTick = (difference / duration) * 10;
setTimeout(() => {
scrollLayer.scrollTop = scrollLayer.scrollTop + perTick;
if (scrollLayer.scrollTop === destination) {
return;
}
scrollToElement(scrollLayer, destination, duration - 10);
}, 10);
}
注:ハンドラーの大きなネストされたifと計算は、その動作を複製しようとしていた「最も近い」位置を見つけることですが、scrollToElement関数を使用してスクロールを上にアニメートするだけです(デフォルトの動作オプションオブジェクトなし)を使用できます:
scrollToElement(scrollLayer, element.offsetTop, 200);