アイテムに次のcssプロパティのいずれかがあるかどうかをテストするために、jQueryの新しいカスタム:pseudoセレクターを作成しました。
- オーバーフロー:[スクロール|自動]
- オーバーフロー-x:[スクロール|自動]
- オーバーフロー-y:[スクロール|自動]
別の要素の最も近いスクロール可能な親を見つけたかったので、オーバーフローで最も近い親を見つけるための別の小さなjQueryプラグインも作成しました。
このソリューションはおそらく最高のパフォーマンスを発揮しませんが、機能しているようです。$ .scrollToプラグインと組み合わせて使用しました。要素が別のスクロール可能なコンテナ内にあるかどうかを知る必要がある場合があります。その場合、親のスクロール可能な要素とウィンドウをスクロールします。
おそらくこれを単一のプラグインにラップし、プラグインの一部として疑似セレクターを追加し、最も近い(親)スクロール可能なコンテナーを見つけるための「最も近い」メソッドを公開する必要があったでしょう。
Anywho ....こちらです。
$ .isScrollable jQueryプラグイン:
$.fn.isScrollable = function(){
var elem = $(this);
return (
elem.css('overflow') == 'scroll'
|| elem.css('overflow') == 'auto'
|| elem.css('overflow-x') == 'scroll'
|| elem.css('overflow-x') == 'auto'
|| elem.css('overflow-y') == 'scroll'
|| elem.css('overflow-y') == 'auto'
);
};
$( ':scrollable')jQuery擬似セレクター:
$.expr[":"].scrollable = function(a) {
var elem = $(a);
return elem.isScrollable();
};
$ .scrollableparent()jQueryプラグイン:
$.fn.scrollableparent = function(){
return $(this).closest(':scrollable') || $(window); //default to $('html') instead?
};
実装は非常に簡単です
//does a specific element have overflow scroll?
var somedivIsScrollable = $(this).isScrollable();
//use :scrollable psuedo selector to find a collection of child scrollable elements
var scrollableChildren = $(this).find(':scrollable');
//use $.scrollableparent to find closest scrollable container
var scrollableparent = $(this).scrollableparent();
更新:私は、Robert Koritnikがすでに$ .scrollintoview()jQueryプラグインの一部として、スクロール可能な軸とスクロール可能なコンテナーの高さを識別する、より強力な:scrollable疑似セレクターを考案したことを発見しました。scrollintoviewプラグイン
ここに彼の派手な疑似セレクター(小道具)があります:
$.extend($.expr[":"], {
scrollable: function (element, index, meta, stack) {
var direction = converter[typeof (meta[3]) === "string" && meta[3].toLowerCase()] || converter.both;
var styles = (document.defaultView && document.defaultView.getComputedStyle ? document.defaultView.getComputedStyle(element, null) : element.currentStyle);
var overflow = {
x: scrollValue[styles.overflowX.toLowerCase()] || false,
y: scrollValue[styles.overflowY.toLowerCase()] || false,
isRoot: rootrx.test(element.nodeName)
};
// check if completely unscrollable (exclude HTML element because it's special)
if (!overflow.x && !overflow.y && !overflow.isRoot)
{
return false;
}
var size = {
height: {
scroll: element.scrollHeight,
client: element.clientHeight
},
width: {
scroll: element.scrollWidth,
client: element.clientWidth
},
// check overflow.x/y because iPad (and possibly other tablets) don't dislay scrollbars
scrollableX: function () {
return (overflow.x || overflow.isRoot) && this.width.scroll > this.width.client;
},
scrollableY: function () {
return (overflow.y || overflow.isRoot) && this.height.scroll > this.height.client;
}
};
return direction.y && size.scrollableY() || direction.x && size.scrollableX();
}
});
> this.innerHeight();
jsfiddle.net