Viewpicture.de now with HTML5

viewpicture.de my picture page now got an update to replace the simpleviewer gallery with juicebox.

Simpleviewer is using Flash to display images, due to technical capability reasons, flash is not the best choise and it also has security issues, that is why I moved to HTML5.

juicebox.net is offering a good script and App to create galleries.

Hope you enjoy the new page.

Following is a small test with Juicebox WordPress plugin:

Automatische Weiterleitung mit php html javascript

Mittels dem folgenden Codeschnippsel lässt sich eine Weiterleitung mittels PHP realisieren durch Nutzung des Headers bzw. der header() Funktion.

<?php
header("Location: http://www.alexanderjaeger/");
exit();
?>

In HTML lässt sich sowas folgendermaßen umsetzen:

Dabei gibt die Zahl an, nach wievielen Sekunden weitergeleitet werden soll.

In Javascript würde es so aussehen:

<script type="text/javascript">
  window.location.href='http://www.alexanderjaeger.de/';
</script>

Dabei ist zu beachten, dass bei deaktiviertem Javascript keine Weiterleitung erfolgt.