[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 825건 1 페이지
  • RSS
팁앤테크 목록
번호 제목 글쓴이 조회 추천 날짜
825 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 56548 0 06-29
824 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 53065 0 06-02
823 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 51864 0 07-29
822 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 51834 0 07-10
821 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 51412 0 04-07
820 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 51334 0 06-29
819 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 51217 0 07-28
818 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 51142 0 07-02
817 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 49745 0 05-12
816 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 49720 0 04-20
815 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 49352 0 04-09
814 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 47440 0 03-30
813 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 46621 0 09-23
812 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 45758 0 09-27
811 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 43509 0 11-07
810 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 42758 0 11-19
809 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 41298 0 08-06
808 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 40768 0 03-04
807 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 40391 0 08-06
806 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 38295 0 10-13
805 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 38231 0 07-13
804 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 37715 0 09-19
803 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 36969 0 10-04
802 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 36903 0 07-22
801 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 36834 0 11-29

검색

회원로그인

회원가입

사이트 정보

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

접속자집계

오늘
5,412
어제
5,850
최대
7,259
전체
1,216,364
Copyright (c) 株式会社YHPLUS. All rights reserved.