[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건 15 페이지
  • RSS
팁앤테크 목록
번호 제목 글쓴이 조회 추천 날짜
420 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15713 0 06-19
419 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15640 0 11-11
418 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15633 0 05-30
417 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15577 0 12-26
416 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15553 0 03-21
415 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15503 0 03-06
414 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15462 2 03-06
413 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15447 0 02-16
412 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15434 0 09-01
411 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15427 1 11-14
410 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15424 0 02-05
409 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15392 0 07-16
408 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15391 0 12-11
407 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15380 0 11-13
406 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15378 0 09-04
405 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15375 0 10-17
404 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15366 0 11-21
403 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15366 0 02-04
402 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15335 0 04-23
401 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15333 0 07-16
400 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15329 0 11-17
399 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15323 0 05-08
398 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15310 0 04-11
397 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15307 0 05-06
396 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15289 0 05-09

검색

회원로그인

회원가입

사이트 정보

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

접속자집계

오늘
3,553
어제
7,441
최대
8,371
전체
1,644,403
Copyright (c) 株式会社YHPLUS. All rights reserved.