Skip to content

Instantly share code, notes, and snippets.

@jacoyutorius
Forked from heppokokun/gist:6255875
Last active December 21, 2015 05:19
Show Gist options
  • Save jacoyutorius/6255890 to your computer and use it in GitHub Desktop.
Save jacoyutorius/6255890 to your computer and use it in GitHub Desktop.
<html lang="ja">
<head>
<meta charset="utf-8">
<title>jQueryのテスト</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="./scripts/jquery.bxslider.min.js"></script>
<link rel="stylesheet" href="./css/jquery.bxslider.css" type="text/css" />
<script>
$(document).ready(
function(){
$('.bxslider').bxSlider();
});
</script>
<body>
<ul class="bxslider">
<li><img src="./images/img1.jpg" width="200"height="300" /></li>
<li><img src="./images/img2.jpg" width="200"height="300" /></li>
<li><img src="./images/img3.jpg" width="200"height="300" /></li>
<li><img src="./images/img4.jpg" width="200"height="300" /></li>
</ul>
<div id="color_div">ここのDIVの枠線をjqueryで変更します</div>
</head>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment