en.javascript.info/2-ui/1-document/11-coordinates/2-position-at/task.md
Ilya Kantor 508969c13f up
2017-02-28 12:54:48 +03:00

15 lines
557 B
Markdown

importance: 5
---
# Show a note near the element
Create a function `positionAt(anchor, position, elem)` that positions `elem`, depending on `position` either at the top (`"top"`), right (`"right"`) or bottom (`"bottom"`) of the element `anchor`.
Use it to make a function `showNote(anchor, position, html)` that shows an element with the class `"note"` and the text `html` at the given position near the anchor.
Show the notes like here:
[iframe src="solution" height="350" border="1" link]
P.S. The note should have `position:fixed` for this task.