view _xampp/splash-logo.php @ 16:fb948097de39

fix bug: Edittaglist is working on Firefox. fix bug: name of regex used to show with strange <span id="transmark"></span> showing only on FF but not Saf. Change it to use "document.getElementById(id).textContent to get the pure text string.
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Fri, 20 Feb 2015 16:39:08 +0100
parents b12c99b7c3f0
children
line wrap: on
line source

<?
  $m = new SWFMovie();
  $m->setDimension(400, 100);
  $m->setBackground(0xff, 0xff, 0xff);

  $m->add(new SWFBitmap(fopen("img/xampp-logo.jpg", "rb")));

  for($i=0;$i<=100;$i++)
  {
	  $m->add(new SWFAction("alpha = $i;"));
	  $m->nextFrame();
  }

  header('Content-type: application/x-shockwave-flash');
  $m->output();
?>