[jQuery] Multiple modal 멀티모달 > 팁앤테크

본문 바로가기
사이트 내 전체검색

팁앤테크

[jQuery] Multiple modal 멀티모달

페이지 정보

본문

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" type="text/css" href="bootstrap.css">
    <script type="text/javascript" src="jquery-1.11.2.js"></script>
    <script type="text/javascript" src="bootstrap.js"></script>
    <style type="text/css">
      .my-img a {
        display: inline-block;
        margin: 10px;
        border: 2px solid #CCC;
      }
      .my-img a:hover {
        border: 2px solid #45AFFF;
      }    
      .modal-lg {
        width: 86%;
      }
      .modal-body {
        overflow: auto;
        max-height: auto;
      }
    </style>
</head>
<body>

<div class="container">
  <h2>Modal Example</h2>
  <!-- Trigger the modal with a button -->
  <div class="row">
    <div class="col-xs-12 my-img">
      <a href="#" id="link1" data-toggle="modal" data-target="#myModal">
        <img src="1.png" id="img1" class="img-responsive" width="250px">
      </a>
      <a href="#" id="link1" data-toggle="modal" data-target="#myModal">
        <img src="2.png" id="img2" class="img-responsive" width="250px">
      </a>
      <a href="#" id="link1" data-toggle="modal" data-target="#myModal">
        <img src="3.png" id="img3" class="img-responsive" width="250px">
      </a>
      <a href="#" id="link1" data-toggle="modal" data-target="#myModal">
        <img src="4.png" id="img4" class="img-responsive" width="250px">
      </a>          
  </div>  

  <!-- Modal -->
  <div class="modal fade" id="myModal" role="dialog">
    <div class="modal-dialog modal-lg">

      <!-- Modal content-->
      <div class="modal-content">
        <div class="modal-header">
          <button type="button" class="close" data-dismiss="modal">&times;</button>
          <h4 class="modal-title">your image title here (can be dynamic) </h4>
        </div>
        <div class="modal-body" id="showImg">

        </div>
        <div class="modal-footer">
          <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        </div>
      </div>

    </div>
  </div>

</div>
<script type="text/javascript">
      $(document).ready(function() {
        $('img').on('click', function() {
          $("#showImg").empty();
          var image = $(this).attr("src");
          $("#showImg").append("<img class='img-responsive' src='" + image + "' />")
          //alert(image);
        })
      });
</script>

</body>
</html>
추천0

댓글목록

등록된 댓글이 없습니다.

Total 770건 19 페이지
  • RSS
팁앤테크 목록
번호 제목 글쓴이 조회 추천 날짜
320 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15922 0 01-17
319 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15930 0 10-24
318 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15944 0 01-09
317 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15945 0 01-08
316 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15945 0 04-18
315 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15965 0 01-21
314 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16022 0 12-27
313 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16022 0 10-17
312 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16055 0 11-28
311 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16056 0 02-16
310 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16068 0 02-08
309 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16073 0 01-28
308 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16084 0 04-16
307 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16090 0 10-16
306 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16090 0 01-09
305 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16101 0 06-14
304 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16126 0 08-21
303 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16126 0 12-18
302 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16157 0 10-23
301 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16165 0 11-26
300 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16189 0 08-31
299 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16202 0 01-07
298 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16240 0 11-12
297 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16247 1 05-10
296 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16257 0 06-19

검색

회원로그인

회원가입

사이트 정보

株式会社YHPLUS / 대표 : ZERO
〒140-0011 東京都品川区東大井2-5-9-203
050-5539-7787
오픈카카오톡 (YHPLUS) :
https://open.kakao.com/o/slfDj15d

접속자집계

오늘
7,605
어제
7,612
최대
8,233
전체
1,624,790
Copyright (c) 株式会社YHPLUS. All rights reserved.