XHTMLの雛形
HTML SlidyのXHTMLの雛形は以下の通りです。
<?xml version="1.0" encoding="utf-8"?>
<!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" lang="en" xml:lang="en">
<head>
<title>Slide Shows in XHTML</title>
<meta name="copyright"
content="Copyright © 2005 your copyright notice" />
<link rel="stylesheet" type="text/css" media="screen, projection, print"
href="http://www.w3.org/Talks/Tools/Slidy/slidy.css" />
<script src="http://www.w3.org/Talks/Tools/Slidy/slidy.js"
type="text/javascript"></script>
<style type="text/css">
<!-- your custom style rules -->
</style>
</head>
<body>
... your slides marked up in XHTML ...
</body>
</html>
Incremental表示
リスト要素などをマウスをクリックするごとに表示する方法は<ul class="incremental"> とclass を"incremental"とします。
-
First point
-
Second point
-
Third point
<ul class="incremental">
<li>First point</li>
<li>Second point</li>
<li>Third point</li>
</ul>