用法:
theme
类型:String
默认:
null, inherited from parent
设置弹出内容的配色方案(样本)。除非明确设置为'none',否则弹出窗口的主题将在第一次显示弹出窗口时通过继承页面主题来分配,否则,将通过 hard-coded 值 'a' 分配。如果将其设置为'none',则弹出窗口将完全没有任何主题,并且是透明的。
可能的值:样本字母 (a-z) 或 "none"。
此选项也作为数据属性公开:data-theme="b"
。
代码示例:
使用指定的 theme
选项初始化弹出窗口:
$( ".selector" ).popup({
theme: "b"
});
初始化后获取或设置theme
选项:
// Getter
var theme = $( ".selector" ).popup( "option", "theme" );
// Setter
$( ".selector" ).popup( "option", "theme", "b" );
相关用法
- JQuery Mobile Popup transition用法及代码示例
- JQuery Mobile Popup tolerance用法及代码示例
- JQuery Mobile Popup initSelector用法及代码示例
- JQuery Mobile Popup dismissible用法及代码示例
- JQuery Mobile Popup classes用法及代码示例
- JQuery Mobile Popup create( event, ui )用法及代码示例
- JQuery Mobile Popup arrow用法及代码示例
- JQuery Mobile Popup beforeposition( event, ui )用法及代码示例
- JQuery Mobile Popup defaults用法及代码示例
- JQuery Mobile Popup enable用法及代码示例
- JQuery Mobile Popup reposition用法及代码示例
- JQuery Mobile Popup shadow用法及代码示例
- JQuery Mobile Popup open用法及代码示例
- JQuery Mobile Popup overlayTheme用法及代码示例
- JQuery Mobile Popup close用法及代码示例
- JQuery Mobile Popup destroy用法及代码示例
- JQuery Mobile Popup afterclose( event )用法及代码示例
- JQuery Mobile Popup positionTo用法及代码示例
- JQuery Mobile Popup disabled用法及代码示例
- JQuery Mobile Popup corners用法及代码示例
- JQuery Mobile Popup disable用法及代码示例
- JQuery Mobile Popup afteropen( event )用法及代码示例
- JQuery Mobile Popup history用法及代码示例
- JQuery Mobile Popup option用法及代码示例
- JQuery Mobile Pagecontainer beforeshow( event, ui )用法及代码示例
注:本文由纯净天空筛选整理自jquerymobile.com大神的英文原创作品 Popup theme。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。