[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건 27 페이지
  • RSS
팁앤테크 목록
번호 제목 글쓴이 조회 추천 날짜
120 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 14653 0 05-04
119 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10219 0 01-05
118 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 12177 0 08-12
117 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10783 0 02-10
116 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 20140 0 09-21
115 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5045 0 12-10
114 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3665 0 03-03
113 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3055 0 12-04
112 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 18063 0 06-01
111 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 17249 0 01-19
110 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 17702 0 07-23
109 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 17670 0 01-10
108 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 20704 0 02-18
107 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 18083 0 11-12
106 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 18723 0 06-23
105 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 22515 0 08-07
104 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 14844 0 07-31
103 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 17591 0 11-25
102 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 17377 0 01-30
101 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15790 0 05-26
100 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 52435 0 07-02
99 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 33719 0 12-08
98 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 24724 0 02-13
97 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16265 0 11-08
96 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 18323 0 04-04

검색

회원로그인

회원가입

사이트 정보

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

접속자집계

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