sharethewisdom
Gebruiker
- Lid geworden
- 25 dec 2008
- Berichten
- 6
hallo,
Eerst en vooral wens ik iedereen prettige feesten toe! Ik stelde mijn probleem reeds eerder in het engels:
I created this website http://webs.hogent.be/bart_deroy/ on which I used a great deal of (one particular) SMIL presentation method inside my html, to simply alter texts and at times also images and other elements. Yet only Internet Explorer 5.5+ can run SMIL presentations inside HTML files.
I know it wasn't smart to seize on this solution as such, without doubting about a possible risk for problems in other browsers nor bearing the actual purpose of those SMIL things in mind. Worse still it was very stupid. (frustrating) But now I'm learning and I started all over a few times, to produce order out of my own chaos. My knowledge of javascript is very small, I appreciate anyone's help most when he/she could give me full examples, so that i have something to start with.
SMIL Tutorial: http://www.w3schools.com/smil/smil_html.asp
aim: to replace little bits of text of the SMIL method with bits of text of a javascript method in order to conform to all browsers
I would like to replace this:
with something like this:
In this example, each tag should display for 3 seconds whilst the others are unvisible, so that the tags alter, and the alignment does not necessarily need to be css-outlined in order to let the elements preserve their same logical place.
alvast bedankt, commentaar op de website, al dan niet bekeken met IE 5.5 of later, is ook zeker welkom
Bart
Eerst en vooral wens ik iedereen prettige feesten toe! Ik stelde mijn probleem reeds eerder in het engels:
I created this website http://webs.hogent.be/bart_deroy/ on which I used a great deal of (one particular) SMIL presentation method inside my html, to simply alter texts and at times also images and other elements. Yet only Internet Explorer 5.5+ can run SMIL presentations inside HTML files.

I know it wasn't smart to seize on this solution as such, without doubting about a possible risk for problems in other browsers nor bearing the actual purpose of those SMIL things in mind. Worse still it was very stupid. (frustrating) But now I'm learning and I started all over a few times, to produce order out of my own chaos. My knowledge of javascript is very small, I appreciate anyone's help most when he/she could give me full examples, so that i have something to start with.
SMIL Tutorial: http://www.w3schools.com/smil/smil_html.asp
aim: to replace little bits of text of the SMIL method with bits of text of a javascript method in order to conform to all browsers
I would like to replace this:
Code:
<t:seq repeatCount="indefinite">
<tag class="t" dur="3s">Welkompagina</tag>
<tag class="t" dur="3s">Welcome page</tag>
<tag class="t" dur="3s">Accueil</tag>
</t:seq>
with something like this:
Code:
[begin script: the repeat count must always be indefinite, any tags found in between here and the end should all be timed out in accordance with the duration given here (dur="3s" or equally)]
<tag>Welkompagina</tag>
<tag>Welcome page</tag>
<tag>Accueil</tag>
[end script: all elements are enclosed within this part and the beginning]
In this example, each tag should display for 3 seconds whilst the others are unvisible, so that the tags alter, and the alignment does not necessarily need to be css-outlined in order to let the elements preserve their same logical place.
alvast bedankt, commentaar op de website, al dan niet bekeken met IE 5.5 of later, is ook zeker welkom

Bart