-
Powerpoint ?
A deceased friend had a Powerpoint presentation of her recent work. Can the slides of such PP images (or the whole PP presentation) be used on a website?
I rough search showed links to convert html/css images TO Powerpoint and some software links. I cannot download such softwre.
Any leads would be helpful.
-
-
Or if your slides are just images, how about using a slideshow with manual controls - The Ultimate Fade-in Slideshow script at DD has that option: http://www.dynamicdrive.com/dynamici...nslideshow.htm
You can change the fade-in effect too, adding a directional sweep so that slide come in from the side (or top/bottom) by modifying the fadeslideshow.js file.
Find this line;
Code:
.stop().css({opacity:0}).animate({opacity:1}, setting.fadeduration, function(){ //Callback function after fade animation is complete:
and change to;
Code:
.stop().css({opacity:0, 'left':'-100%'}).animate({opacity:1, 'left':'0'}, setting.fadeduration, function(){ //Callback function after fade animation is complete:
This example sweeps the images in from the left, but you can change it to right, top or bottom, for different transition effects.
-
-
Thanks BeverlyH and Molendijk. Will have to check out your suggestions later.