웹관련프로그래밍(web programming)/Bootstrap(부트스트랩)

부트스트랩 - 말풍선(Tooltip) 만들기 (예제로 쉽게 이해하기)

끄적끄적아무거나 2021. 10. 8. 08:36
반응형

글 시작에 앞서 visual studio에서 bootstrap 코드를 작성하고 확인하는 방법을 괄호 링크에 있으니 참조하길 바란다.

(https://scribblinganything.tistory.com/298)

 


 

 

Bootstrap - 말풍선(Tooltip) 만들기

 

부트스트랩에서 제공하는 "tooltip.js"를 이용하면 간단한 구문으로 툴팁(말풍선)을 만들 수 있다.

 

바로 코드로 설명하겠다.

 

코드>>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>https://scribblinganything.tistory.com/</title>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
    <script>
        $(document).ready(function(){
        $('[data-toggle="tooltip"]').tooltip();   
        });       
    </script>   
    <style>
      .box1 {background-color: #008CBA; padding:3px; text-align: center; height:50px; width:50px;position:absolute;} 
    </style>
</head>
<body>
    <p id = "ex1">버튼에 마우스를 올리면 말풍선이 생깁니다</p>
    <button id="button1" data-toggle="tooltip" title="This is Right">오른쪽</button>
    <button id="button2" data-toggle="tooltip" title="This is Left">왼쪽</button>
</body>
</html>

 

결과>>

 

주석>>

위 결과와 같이 말풍선 박스가 생겼다. 

 

 


툴팁 위치(배치) 지정하는 법

 

아래를 참조해서 코드에 값을 넣도록 하자

    <button id="button1" data-toggle="tooltip" data-placement="top" title="This is Right">오른쪽</button>
    <button id="button1" data-toggle="tooltip" data-placement="left" title="This is Right">오른쪽</button>
    <button id="button1" data-toggle="tooltip" data-placement="right" title="This is Right">오른쪽</button>
    <button id="button1" data-toggle="tooltip" data-placement="bottom" title="This is Right">오른쪽</button>

 

 

반응형