I'm just building a locally hosted website. I will have a number of pages, 1,2,3 etc. And I wanted to create a kind of a slideshow effect by cycling slowly through each page. Using http-equiv="refresh" on each page I can link from page 1 to 2, page 2 to 3, page 3 to 1 etc. Going full screen on the browser creates a lovely slideshow effect of the website.
I'm a low enough level, but I would like to be transition from one page to the other smoothly, either fade in fade out or whatever. Right now it's quite jumpy.
Anyway, is this something I can do using the current meta tag or should I use an alternative method? I would prefer C# over Java if required.
<head>
<META HTTP-EQUIV="refresh" CONTENT="8;URL=/page1">
</head>enter code here