본문 바로가기
Development/UI FrameWork

[BootStrap 3] popover Example

by Dev. Jkun 2016. 6. 19.
반응형

링크1 : http://www.w3schools.com/bootstrap/bootstrap_ref_js_popover.asp

링크2 : http://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_ref_js_popover_methods&stacked=h


<!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" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
  <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
  <style>
  a {
      font-size: 25px;
  }
  </style>
</head>
<body>

<div class="container">
  <h3>Popover Methods</h3>
  <a href="#" data-toggle="popover" title="Popover Header" data-content="Some content inside the popover">Popover Example</a>
  <div>
    <p>Click on the buttons to manually control the popover above:</p>
    <button type="button" class="btn btn-primary">Show</button>
    <button type="button" class="btn btn-warning">Hide</button>
    <button type="button" class="btn btn-success">Toggle</button>
    <button type="button" class="btn btn-danger">Destroy</button>
  </div>
</div>

<script>
$(document).ready(function(){
    $(".btn-primary").click(function(){
        $("[data-toggle='popover']").popover('show');
    });
    $(".btn-warning").click(function(){
        $("[data-toggle='popover']").popover('hide');
    });
    $(".btn-success").click(function(){
        $("[data-toggle='popover']").popover('toggle');
    });
    $(".btn-danger").click(function(){
       $("[data-toggle='popover']").popover('destroy');
    });
});
</script>

</body>
</html>


반응형

댓글