부트스트랩에서 마우스오버 프롬프트를 설정하는 방법

爱喝马黛茶的安东尼
풀어 주다: 2019-07-13 17:17:40
원래의
4394명이 탐색했습니다.

부트스트랩에서 마우스오버 프롬프트를 설정하는 방법

1、   

<button type="button" rel="drevil" data-content="报名截止时间:&#39;+time+&#39;" data-container="body" data-toggle="popover" 
data-placement="bottom"></button>
로그인 후 복사

2、

$(function () { $("[data-toggle=&#39;popover&#39;]").popover(); });    
    $("[rel=drevil]").popover({
                      trigger:&#39;manual&#39;,
                      //placement : &#39;bottom&#39;, //placement of the popover. also can use top, bottom, 
                      left or right
                      //天title : &#39;<div style="text-align:center; color:red; text-decoration:underline; 
                      font-size:14px;"> Muah ha ha</div>&#39;, //this is the top title bar of the popover. 
                      add some basic css
                      html: &#39;true&#39;, //needed to show html of course
                      //content : &#39;<div id="popOverBox"><img src="http://www.hd-report.com/wp-content
                      /uploads/2008/08/mr-evil.jpg" width="251" height="201" /></div>&#39;, //this is the 
                      content of the html box. add the image here or anything you want really.
                      animation: false
                  }).on("mouseenter", function () {
                      var _this = this;
                      $(this).popover("show");
                      $(this).siblings(".popover").on("mouseleave", function () {
                          $(_this).popover(&#39;hide&#39;);
                      });
                  }).on("mouseleave", function () {
                      var _this = this;
                      setTimeout(function () {
                          if (!$(".popover:hover").length) {
                              $(_this).popover("hide")
                          }
                      }, 300);
                  });
로그인 후 복사

관련 추천: "부트스트랩 시작 튜토리얼"

위 내용은 부트스트랩에서 마우스오버 프롬프트를 설정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!