반응형
링크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>
반응형
'Development > UI FrameWork' 카테고리의 다른 글
[BootStrap 3] ScrollSpy (0) | 2016.06.19 |
---|---|
[BootStrap 3] popover live (0) | 2016.06.19 |
[BootStrap] Tooltip Styling (0) | 2016.06.19 |
부트스트랩 페이징 가운데 정렬(Center) (1) | 2014.10.28 |
Metro UI CSS 2.0 BootStrap - Guide 1. Base CSS | 1. General CSS (0) | 2014.06.17 |
댓글