|
CGI::Kwiki has a PowerPoint-like slideshow built in. Give it a try. Click Here to start the slideshow: [&SLIDESHOW_SELECTOR] Welcome to the Kwiki Slide Show Example
How it works
Controls
This is an image, thrown in just for fun.
Adjustments
[&lf] [&subtitle Animations] Linefeed Animation
[&lf] More Animation
[&subtitle] [&bgcolor red] Bugs
[&bgcolor] Displaying Source Code
function changeSlide(i) {
var myForm = document.getElementsByTagName("form")[0];
var myNum = myForm.getElementsByTagName("input")[0];
i = i * 1;
myVal = myNum.value * 1;
myNum.value = myVal + i;
myForm.submit();
}
sub process {
my ($self) = @_;
return $self->cgi->size ? $self->open_window
: $self->slide;
}
The End |