en.javascript.info/02-ui/05-widgets/02-widgets-structure/01-clock/task.md
Ilya Kantor f301cb744d init
2014-10-26 22:10:13 +03:00

25 lines
No EOL
602 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.

# Часики
[importance 5]
Создайте компонент "Часы" (Clock).
Интерфейс:
```js
var clock = new Clock({
elem: элемент
});
clock.start(); // старт
clock.stop(); // стоп
```
Остальные методы, если нужны, должны быть приватными.
При нажатии на `alert` часы должны приостанавливаться, а затем продолжать идти с правильным временем.
Пример результата:
[iframe src="solution" border=1]
[edit src="task" task/]