Style Filters
Introduction to Filters and Transitions

The code on this page accomplishes page transitions using the META tag in the HEAD section. Page transitions apparently do not work inside frames. The specific code below causes a circle-in transition on entering the page and a circle-out transition on exit:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta http-equiv="Page-Enter" content="revealTrans(Duration=4.0,Transition=2)"> <meta http-equiv="Page-Exit" content="revealTrans(Duration=5.0,Transition=3)"> Note: The options for the http-equiv page events are Page-Enter, Page-Exit, Site-Enter, and Site-Exit. Your can have any or all.

The options for the revealTrans parameter are:
  1. Box in
  2. Box out
  3. Circle in
  4. Circle out
  5. Wipe up
  6. Wipe down
  7. Wipe right
  8. Wipe left
  9. Vertical blinds
  10. Horizontal blinds
  11. Checkerboard across
  12. Checkerboard down
  13. Random dissolve
  14. Split vertical in
  15. Split vertical out
  16. Split horizontal in
  17. Split horizontal out
  18. Strips left down
  19. Strips left up
  20. Strips right down
  21. Strips right up
  22. Random bars horizontal
  23. Random bars vertical
  24. Random
For a blend transition: <meta http-equiv="Page-Enter" content="blendTrans(Duration=1.0)"> The Duration parameter sets the transition time, with higher being longer.