Skip to content

Instantly share code, notes, and snippets.

@heppokokun
Created September 14, 2013 07:37
Show Gist options
  • Save heppokokun/6559646 to your computer and use it in GitHub Desktop.
Save heppokokun/6559646 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="test.css" type="text/css" media="screen, projection">
<title>スライドの実践</title>
</head>
<body>
<h1>CSSで作るスライドの実践</h1>
<!-- Slider Setup -->
<input checked type=radio name=slider id="slide1" />
<input type=radio name=slider id="slide2" />
<input type=radio name=slider id="slide3" />
<input type=radio name=slider id="slide4" />
<input type=radio name=slider id="slide5" />
<!-- The Slider -->
<div id="slides">
<div id="overflow">
<div class="inner">
<article>
<div class="info"></div>
<img src="images/slide1.JPG"/>
</article>
<article>
<div class="info"></div>
<img src="images/slide2.JPG" />
</article>
<article>
<div class="info"></div>
<img src="images/slide3.JPG" />
</article>
<article>
<div class="info"></div>
<img src="images/slide4.JPG" />
</article>
<article>
<div class="info"></div>
<img src="images/slide5.JPG" />
</article>
</div> <!-- .inner -->
</div> <!-- #overflow -->
</div> <!-- #slides -->
<div id="controls">
<label for="slide1"></label>
<label for="slide2"></label>
<label for="slide3"></label>
<label for="slide4"></label>
<label for="slide5"></label>
</div> <!-- #controls -->
<div id="active">
<label for="slide1"></label>
<label for="slide2"></label>
<label for="slide3"></label>
<label for="slide4"></label>
<label for="slide5"></label>
</div> <!-- #active -->
<!-- #slider -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment