Thorsten: Einpassung des Scriptes ist das Problem...

Beitrag lesen

btw: XHTML 1.0 Strict ist dein HTML ebenfalls nicht ;)

ja.

Ich gebe nicht auf. Ich will das dieses Ding läuft. Ist es jetzt besser?????

  
  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"  
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">  
  
  
<html xmlns="http://www.w3.org/1999/xhtml">  
<head>  
<title>Titel</title>  
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>  
<script type="text/javascript" src="http://malsup.github.com/jquery.cycle2.js"></script>  
  
<script type="text/javascript">  
$( document ).ready(function() {  
$('.cycle-slideshow').cycle({  
fx:'fadeout',  
timeout:3000,  
next:'next',  
fx:'scrollHorz',  
speed:300  
});  
});  
</script>  
  
  
</head>  
<body>  
  
<div class="center"><a href="#" id="next">Next</a></div>  
<div class="cycle-slideshow" >  
    <img src="http://jquery.malsup.com/cycle2/images/p1.jpg" alt="" />  
    <img src="http://jquery.malsup.com/cycle2/images/p2.jpg" alt="" />  
    <img src="http://jquery.malsup.com/cycle2/images/p3.jpg" alt="" />  
    <img src="http://jquery.malsup.com/cycle2/images/p4.jpg" alt="" />  
</div>  
  
</body>  
</html>