mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
37218bce59
GitOrigin-RevId: 918dfd8c43dfea4e64fbb5a1437ea8532cbac7ec
33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
export function buildHighlightElement(highlight, wrapper) {
|
|
const pageView = wrapper.viewer.getPageView(highlight.page - 1)
|
|
|
|
const viewport = pageView.viewport
|
|
|
|
const height = viewport.viewBox[3]
|
|
|
|
const rect = viewport.convertToViewportRectangle([
|
|
highlight.h, // xMin
|
|
height - (highlight.v + highlight.height) + 10, // yMin
|
|
highlight.h + highlight.width, // xMax
|
|
height - highlight.v + 10, // yMax
|
|
])
|
|
|
|
const [left, top, right, bottom] = wrapper.PDFJS.Util.normalizeRect(rect)
|
|
|
|
const element = document.createElement('div')
|
|
element.style.left = Math.floor(pageView.div.offsetLeft + left) + 'px'
|
|
element.style.top = Math.floor(pageView.div.offsetTop + top + 10) + 'px'
|
|
element.style.width = Math.ceil(right - left) + 'px'
|
|
element.style.height = Math.ceil(bottom - top) + 'px'
|
|
element.style.backgroundColor = 'rgba(255,255,0)'
|
|
element.style.position = 'absolute'
|
|
element.style.display = 'inline-block'
|
|
element.style.scrollMargin = '72px'
|
|
element.style.pointerEvents = 'none'
|
|
element.style.opacity = '0'
|
|
element.style.transition = 'opacity 1s'
|
|
|
|
wrapper.viewer.viewer.append(element)
|
|
|
|
return element
|
|
}
|