-
-
Save jacoyutorius/6255890 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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