asimryu

prettyPhoto 활용 갤러리

Nov 19th, 2014
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.70 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html lang="ko">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>gallery</title>
  6.     <link rel="stylesheet" type="text/css" href="prettyPhoto/css/prettyPhoto.css">
  7.     <script src="http://code.jquery.com/jquery-latest.js"></script>
  8.     <script src="prettyPhoto/js/jquery.prettyPhoto.js"></script>
  9. </head>
  10. <body>
  11.     <a href="http://lorempixel.com/500/500/nature" rel="prettyPhoto[1]" title="자연이미지"><img src="http://lorempixel.com/50/50/nature"></a>
  12.     <a href="http://lorempixel.com/500/500/city" rel="prettyPhoto[1]" title="도시이미지"></a>
  13.     <a href="http://lorempixel.com/500/500/food" rel="prettyPhoto[1]" title="음식이미지"></a>
  14.     <a href="http://lorempixel.com/500/500/animals" rel="prettyPhoto[1]" title="동물이미지"></a>
  15.     <a href="http://lorempixel.com/500/500/cats" rel="prettyPhoto[1]" title="고양이이미지"></a>
  16.     <a href="http://lorempixel.com/500/500/fashion" rel="prettyPhoto[1]" title="패션이미지"></a>
  17.  
  18.     <a href="http://lorempixel.com/800/500/sports" rel="prettyPhoto[2]" title="스포츠이미지"><img src="http://lorempixel.com/50/50/sports"></a>
  19.     <a href="http://lorempixel.com/500/700/business" rel="prettyPhoto[2]" title="비즈니스이미지"></a>
  20.     <a href="http://lorempixel.com/300/500/nightlife" rel="prettyPhoto[2]" title="야경이미지"></a>
  21.     <a href="http://lorempixel.com/200/500/transport" rel="prettyPhoto[2]" title="탈것이미지"></a>
  22.     <a href="http://lorempixel.com/500/300/people" rel="prettyPhoto[2]" title="사람들이미지"></a>
  23.     <a href="http://lorempixel.com/400/300/abstract" rel="prettyPhoto[2]" title="기타이미지"></a>
  24.  
  25.  
  26.  
  27.  
  28.     <script>
  29.         $(function(){
  30.             $("a[rel^='prettyPhoto']").prettyPhoto();
  31.         });
  32.     </script>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment