tooltip position optimization
This commit is contained in:
parent
c045aac4f9
commit
603c92b37d
@ -111,7 +111,10 @@ function setTooltip(container, content, flag = false, parent = null) {
|
|||||||
if (t - offsetHeight - 14 < 0) {
|
if (t - offsetHeight - 14 < 0) {
|
||||||
const parentOffsetHeight = c.parentElement.offsetHeight;
|
const parentOffsetHeight = c.parentElement.offsetHeight;
|
||||||
if (t + parentOffsetHeight + offsetHeight + 10 > lastHeight) {
|
if (t + parentOffsetHeight + offsetHeight + 10 > lastHeight) {
|
||||||
top = lastHeight - offsetHeight - 2;
|
top = t + (parentOffsetHeight - offsetHeight) / 2;
|
||||||
|
if (top + offsetHeight + 1 > lastHeight) {
|
||||||
|
top = lastHeight - offsetHeight - 1;
|
||||||
|
}
|
||||||
wrapper.classList.add('ui-tooltip-no');
|
wrapper.classList.add('ui-tooltip-no');
|
||||||
} else {
|
} else {
|
||||||
top += parentOffsetHeight + 10;
|
top += parentOffsetHeight + 10;
|
||||||
@ -124,9 +127,9 @@ function setTooltip(container, content, flag = false, parent = null) {
|
|||||||
const offsetWidth = wrapper.offsetWidth;
|
const offsetWidth = wrapper.offsetWidth;
|
||||||
left += (c.offsetWidth - offsetWidth) / 2;
|
left += (c.offsetWidth - offsetWidth) / 2;
|
||||||
if (l - offsetWidth < 0) {
|
if (l - offsetWidth < 0) {
|
||||||
left = 2;
|
left = 1;
|
||||||
} else if (left + offsetWidth + 2 > lastWidth) {
|
} else if (left + offsetWidth + 1 > lastWidth) {
|
||||||
left = lastWidth - offsetWidth - 2;
|
left = lastWidth - offsetWidth - 1;
|
||||||
}
|
}
|
||||||
// wrapper.style.left = `${left}px`;
|
// wrapper.style.left = `${left}px`;
|
||||||
// wrapper.style.top = `${top}px`;
|
// wrapper.style.top = `${top}px`;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user