Thorsten: DIV -> API in Cycle2

Beitrag lesen

Ich bekomme das nicht hin. Egal wie oft ich es mir durchlesen.
Auch wenn ich dein Beispiel nehme...

<!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">  
$('.cycle-slideshow').cycle({  
	data-cycle-fx: 'scrollHorz',  
    data-cycle-timeout: 2000,  
    data-cycle-slides='> div'  
});  
</script>  
</head>  
<body>  
  
  
<div class="cycle-slideshow">  
    <div style="background:#fcc">  
        <p>Lorem ipsum dolor ...  
    </div>  
    <div style="background:#cfc">  
        <p>Lorem ipsum dolor ...  
    </div>  
    <div style="background:#ccf">  
        <p>Lorem ipsum dolor ...  
    </div>  
</div>  
  
  
  
  
</body>  
</html>