mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
working on offset_to
This commit is contained in:
parent
44f4045da4
commit
1c41b1ae04
@ -193,9 +193,39 @@
|
|||||||
* in our coordinate system
|
* in our coordinate system
|
||||||
*/
|
*/
|
||||||
position : function () {
|
position : function () {
|
||||||
|
return this.offset_to(this.$container.get(0));
|
||||||
|
|
||||||
var off = this.$p.offset();
|
var off = this.$p.offset();
|
||||||
var off_c = this.$container.offset();
|
var off_c = this.$container.offset();
|
||||||
return [off_c.left-off.left, off_c.top-off.top];
|
return [off_c.left-off.left, off_c.top-off.top];
|
||||||
|
},
|
||||||
|
/*
|
||||||
|
* Similar to position, but specify container as ele
|
||||||
|
* ele must be an ancestor node of current page
|
||||||
|
* TODO: remove position
|
||||||
|
* TODO: consider border
|
||||||
|
*/
|
||||||
|
offset_to : function (ele) {
|
||||||
|
var elep = ele.offsetParent;
|
||||||
|
var cur_e = this.$p.get(0);
|
||||||
|
var cur_top = 0;
|
||||||
|
var cur_left = 0;
|
||||||
|
while(true) {
|
||||||
|
switch(cur_e) {
|
||||||
|
case null;
|
||||||
|
return;
|
||||||
|
case elep:
|
||||||
|
cur_top -= ele.offsetTop;
|
||||||
|
cur_left -= ele.offsetLeft;
|
||||||
|
/* fall through */
|
||||||
|
case ele:
|
||||||
|
return [cur_top, cur_left];
|
||||||
|
default:
|
||||||
|
cur_top += cur_e.offsetTop;
|
||||||
|
cur_left += cur_e.offsetLeft;
|
||||||
|
cur_e = cur_e.offstParent;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user