"> 부트스트랩에서 마우스오버 프롬프트를 설정하는 방법-부트스트랩 튜토리얼-php.cn

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

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

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

1、   

로그인 후 복사

2、

$(function () { $("[data-toggle='popover']").popover(); });        $("[rel=drevil]").popover({ trigger:'manual', //placement : 'bottom', //placement of the popover. also can use top, bottom, left or right //天title : '
Muah ha ha
', //this is the top title bar of the popover. add some basic css html: 'true', //needed to show html of course //content : '
', //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('hide'); }); }).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 학습자의 빠른 성장을 도와주세요!