Отображение картинки по частям
Не работает спецэффект.
Код:
<!DOCTYPE html>
<html>
<head>
<body>
<div id="slideshow">
<img width="512px" height="384px" src="1.gif" usemap="#slideshowMap">
<img width="512" height="384" src="2.gif">
<img width="512" height="384" src="3.gif">
<map name="slideshowMap">
<area shape="rect" coords="0, 0, 63, 47">
<area shape="rect" coords="64, 48, 127, 95">
<area shape="rect" coords="128, 96, 191, 143">
<area shape="rect" coords="192, 144, 255, 191">
<area shape="rect" coords="256, 192, 319, 239">
<area shape="rect" coords="320, 240, 383, 287">
<area shape="rect" coords="384, 288, 447, 335">
<area shape="rect" coords="448, 336, 511, 383">
</map>
</div>
</body>
</html>
У картинок установлен display none (пробовал также visibility hidden). Нужно, чтобы по очереди появлялись все area. Пробовал указывать им display block или visibility visible, но они не отображаются. Как сделать, чтобы можно было отображать изображение по кусочкам ?
|