en.javascript.info/archive/widget-tasks/4-img-select-mouse/solution.md
2015-02-21 14:58:02 +03:00

21 lines
No EOL
738 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# HTML/CSS
Область выделения можно оформить как `DIV`, серого цвета, полупрозрачный, с рамкой:
```css
.crop-area {
position: absolute;
border: 1px dashed black;
background: #F5DEB3;
opacity: 0.3;
filter:alpha(opacity=30); /* IE opacity */
}
```
# Решение
Обратите внимание: обработчики `mousemove/mouseup` ставятся на `document`, не на элемент.
Это для того, чтобы посетитель мог начать выделение на элементе, а продолжить и завершить его, двигая зажатой мышкой снаружи, вне его границ.