Arquivos
2013-07-30 23:07:05 +01:00

56 linhas
1.6 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<link rel="stylesheet" title="Standard" href="styles.css" type="text/css" media="screen" />
<!-- styles.css contains white for background colour - we'll need an equivalent css statement for a black background -->
<script language="JavaScript" type="text/javascript" src="contentflow.js" load="#BACKGROUND_COLOUR #ADDON"></script>
<script style="text/javascript">
var cf = new ContentFlow('contentFlow',
{reflectionColor: "#000000",
endOpacity : 0.3,
circularFlow: true,
startItem: #START,
scaleFactor: #FACTOR,
visibleItems: 7
});
</script>
<style>
body{
background: #BACKGROUND_COLOUR;
color: #FOREGROUND_COLOUR;
}
</style>
</head>
<body>
#MAXCOVERS
<div class="maincontent">
<div style="width: #WIDTHpx; margin: 0px auto;">
<!-- ===== FLOW ===== -->
<div id="contentFlow" class="ContentFlow">
<!-- should be place before flow so that contained images will be loaded first -->
<div class="loadIndicator"><div class="indicator"></div></div>
<div class="flow">
#ITEMS
</div>
#GLOBAL_CAPTION
<!--
<div class="scrollbar">
<div class="slider"></div>
</div>
-->
</div>
</div>
</div>
</body>
</html>