1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script type="text/javascript" src="/js/jquery.cycle.all.js"></script>
<script type="text/javascript">
$(function() {
$('#s3').cycle({
fx : 'fade',
speed: 300,
timeout: 3000
});
});
</script>
</head>
<body>
<div id="s3">
<iframe src="http://domain1" frameborder="0" style="border:0px;width:100%;height:100%;margin:0px;" /></iframe>
<iframe src="http://domain2" frameborder="0" style="border:0px;width:100%;height:100%;margin:0px;" /></iframe>
</div>
</body>
</html> |
Partager