Puff Effect
說明:通過放大元素並同時隱藏它來創建粉撲效果。
-
puff
-
percent(默認:
150
)類型:Number要縮放到的百分比。
-
例子:
使用粉撲效果切換 div。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>puff demo</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
<style>
#toggle {
width: 100px;
height: 100px;
background: #ccc;
}
</style>
<script src="//code.jquery.com/jquery-1.12.4.js"></script>
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<p>Click anywhere to toggle the box.</p>
<div id="toggle"></div>
<script>
$( document ).click(function() {
$( "#toggle" ).toggle( "puff" );
});
</script>
</body>
</html>
演示:
相關用法
- JQuery UI Pulsate效果用法及代碼示例
- JQuery Mobile Popup initSelector用法及代碼示例
- JQuery Mobile Popup dismissible用法及代碼示例
- JQuery Mobile Popup classes用法及代碼示例
- JQuery Mobile Pagecontainer beforeshow( event, ui )用法及代碼示例
- JQuery Mobile Popup create( event, ui )用法及代碼示例
- JQuery Mobile Page corners用法及代碼示例
- JQuery Mobile Popup arrow用法及代碼示例
- JQuery Mobile Panel position用法及代碼示例
- JQuery Mobile Pagecontainer change用法及代碼示例
- JQuery Mobile Panel open用法及代碼示例
- JQuery UI Progressbar create( event, ui )用法及代碼示例
- JQuery Mobile Pagecontainer classes用法及代碼示例
- JQuery Mobile Panel beforeclose( event, ui )用法及代碼示例
- JQuery Mobile Page create( event )用法及代碼示例
- JQuery Mobile Page keepNativeDefault用法及代碼示例
- JQuery UI Progressbar instance用法及代碼示例
- JQuery UI Progressbar value用法及代碼示例
- JQuery Mobile Popup beforeposition( event, ui )用法及代碼示例
- JQuery Mobile Pagecontainer theme用法及代碼示例
- JQuery Mobile Pagecontainer create( event, ui )用法及代碼示例
- JQuery Mobile Panel close用法及代碼示例
- JQuery Mobile Page theme用法及代碼示例
- JQuery Mobile Page keepNative用法及代碼示例
- JQuery Mobile Pagecontainer disabled用法及代碼示例
注:本文由純淨天空篩選整理自jqueryui.com大神的英文原創作品 Puff效果。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。