en.javascript.info/02-ui/05-widgets/06-widget-tasks/04-img-select-mouse/solution.md
Ilya Kantor f301cb744d init
2014-10-26 22:10:13 +03:00

21 lines
No EOL
802 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 */
}
```
# Решение
[edit src="solution"]Открыть в песочнице[/edit]
Обратите внимание: обработчики `mousemove/mouseup` ставятся на `document`, не на элемент.
Это для того, чтобы посетитель мог начать выделение на элементе, а продолжить и завершить его, двигая зажатой мышкой снаружи, вне его границ.