Pages

28 November 2011

Marquee that slows/pause on mouse over - Simple image filmstrip/scroller


Sử dụng Marquee để làm các dòng chữ chuyển động. Khi chuột di chuyển vào thì di chuyển chậm hơn
<marquee onMouseover="this.scrollAmount=1" onMouseout="this.scrollAmount=4">
Scrolling text here. Scrolling text/images goes here
</marquee>


Nếu muốn sử dụng cho ngôn ngữ php:

<marquee onMouseover="this.scrollAmount=3" onMouseout="this.scrollAmount=6">
<?php
//database connection
//retrive image names from database
//get full image path
?>
<img src="<?php echo $image_path; ?>" />
</marquee>