occ 插件maya怎么烘焙occ贴图用

用mel快速为选择物体创建occ渲染层的方法
用mel快速为选择物体创建occ渲染层方法
一个学生说要为模型组,做一个模型检测快速预览的插件,需要用mel创建mr occlusion
渲染层。于是经过测试,发现了快速方法。代码如下。
1、选择物体,后执行如下代码,创建occ材质
//加载切换mr渲染器
//.....代码省略
//创建 mentalray occ材质渲染层"layer1
createRenderLayer -name "layer1" -number 1 -noRecurse `ls
-selection`;
mrRenderLayerBuiltinPreset occlusion layer1;
editRenderLayerGlobals -currentRenderLayer
&"layer1";
2、选择occ层材质,修改器sample值减少噪点。
//得到渲染层 occlusion材质节点名
//.....代码省略
//设置occlusion材质的采样质量
setAttr "mib_amb_occlusion3.samples" 64;
3、下面方法可以删除occ层
//删除渲染层方法
editRenderLayerGlobals -currentRenderLayer
&"defaultRenderLayer";
delete "layer1";
注意其中的"layer1"可以用变量替换,将来作为临时指定名称,用于临时测试只用。
南无阿弥陀佛。
TianCG开发系列精品Maya插件推荐!免费下载使用!
&&&感谢长期以来,一直关注TianCG出品的Maya系列插件的朋友!南无阿弥陀佛。为了方便大家快速的了解TianCG原创的系列插件概况,现将广大网友反应较好的精品插件总结出来。欢迎大家下载使用。作为插件开发者,非常希望大家可以通过我们的工具,提高动画工作效率,本网站为TianCG官网博客,所有发布的Maya插件,均为原创开发。欢迎大家转载,推荐给更多朋友让他们受益!之后提供了详细插件介绍及详细使用说明,。
已投稿到:
以上网友发言只代表其个人观点,不代表新浪网的观点或立场。oCC技能冷却提示
当前评分: 7.3
12月28日更新
DebuffCaster r33 & oCC r29
更新版本 对应CTM 4.3
此插件的具体使用可进原帖讨论:
注意:4.3.0的国服下载包包括oCC+DebuffCaster两个插件。如果不需要哪个,可以不要加载。
DebuffCaster插件功能:
简单的说就是在动作条上显示buff / debuff的剩余时间
哪个技能CD没了,不转圈了,点一下就OK了
这个插件的功能不是告诉我们现在有什么,而是告诉我们现在缺什么!
设置命令:
&/dc 或 /debuffcaster 来设置本插件
OCC插件功能:
设置命令:&/occ
oCC技能冷却提示插件,用数字显示技能/饰品冷却时间,buff/debuff的剩余时间,并在冷却结束或特殊效果:如寒冰之指,眼镜蛇打击,夜幕等触发时进行提示。
oCC支持的效果列表
血之气息,利刃屏障,灰烬冰霜
清晰预兆,月蚀,自然之赐
野性印记,野性赐福,荆棘术
疾速杀戮,强化稳固射击,荷***实弹,强化雄鹰守护,眼镜蛇打击
奥术专注,飞弹速射,法术连击,一触即发,思维冷却,寒冰指
奥术智慧,冰甲术,法师护甲,火甲术
战争艺术,圣光出鞘
各种祝福,圣印
专注施法,圣光涌动,专注意志
真言术:韧,神圣之灵,心灵之火
节能施法,元素浩劫
水之护盾,闪电护盾
暗影防护结界,暗影冥思,反冲,小鬼增效,熔火之心,灭杀,根除,爆燃,虚空防护,火焰冲撞
魔甲术,邪甲术,灵魂链接,血之契印
血涌,剑盾猛击,猝死,复仇雕文,血之气息
战斗怒吼,命令怒吼
12月28日更新
DebuffCaster r33 & oCC r29
更新版本 对应CTM 4.3
12月14日更新
DebuffCaster r32 & oCC r27
更新版本 对应CTM 4.3
10月14日更新
DebuffCaster r32 & oCC r27
更新版本 对应CTM 4.2
7月14日更新oCC r26
更新版本 对应CTM 4.1/4.2
1月30日更新oCC r25
[*]修正商业技能冷却共CD技能重复提示的错误
最后更新: 17:31
插件大小:271.51kb
最新版本号:4.3_1217
插件来源: ngacn
插件作者:oblind
下载排行榜
评分排行榜引入单个插件还是一次性引入所有插件
每个插件都可以单独的引入到页面中(注意插件间的依赖关系),或者一次性引入。bootstrap.js 和bootstrap.min.js 文件都将所有插件包含在一个文件中了(前者是未压缩版,后者是压缩版)。
你可以仅仅通过data属性API就能使用所有Bootstrap中的插件,而且不用写一行JavaScript代码。这是Bootstrap中的一等API,并且是你的首选方式。
特殊情况是,在某些情况下可能需要特意禁用这种默认动作。因此,我们特地提供了禁用data属性API的方式,通过解除绑定在body上的被命名为`'data-api'`的事件即可实现。如下所示:
$('body').off('.data-api')
还可以解除特定插件的事件绑定,只要将插件名和data-api链接在一起作为参数使用。如下所示:
$('body').off('.alert.data-api')
我们同时为所有Bootstrap插件提供了JavaScript API。所有公开的API都可以单独或链式调用,均返回其所操作的集合(和jQuery的API一致)。
$(".btn.danger").button("toggle").addClass("fat")
所有方法均可接受一个可选的参数对象、一个对此方法有特定意义的字符串或者什么也不传(即用默认参数初始化此插件):
$("#myModal").modal()
// initialized with defaults
$("#myModal").modal({ keyboard: false })
// initialized with no keyboard
$("#myModal").modal('show')
// initializes and invokes show immediately
每个插件都通过`Constructor` 属性暴露了其原始的构造函数:$.fn.popover.Constructor。如果你想获得某个特定插件的实例,可以直接从页面元素中获取:$('[rel=popover]').data('popover').
如果你需要将Bootstrap插件和其它UI框架一同使用。在这种情况下,随时都会导致命名空间冲突。如果这种情况发生了,你可以通过调用插件的 .noConflict 函数恢复其原始值。
var bootstrapButton = $.fn.button.noConflict() // return $.fn.button to previously assigned value
$.fn.bootstrapBtn = bootstrapButton
// give $().bootstrapBtn the bootstrap functionality
Bootstrap对多数插件的独有行为提供了自定义事件。 一般而言,这些事件都是以(英语)动词的原型和过去分词形式来表示的 - 动词原形形式的(例如: show) 在事件执行之前触发;过去分词形式的(例如:shown) 在动作执行完毕后触发。
所有动词原形形式的事件都提供了preventDefault函数。这能在动作执行之前使其停止。
$('#myModal').on('show', function (e) {
if (!data) return e.preventDefault() // stops modal from being shown
关于过渡效果
对于简单的过度效果,只要在引入其它JS文件时一同引入bootstrap-transition.js文件即可。如果你引入的是编译(或压缩)之后的bootstrap.js文件,就不再需要引入此文件了,因为bootstrap.js文件已经包含了此插件。
过渡效果插件的使用案例:
具有幻灯片或淡入效果的对话框
具有淡出效果的标签页
具有淡出效果的警告框
具有幻灯片效果的轮播板
模态对话框是一类简洁、灵活的的弹框,他们具有精简的功能和友好的默认行为。
带有标题、正文、页脚按钮的对话框。
One fine body&
&div class="modal hide fade"&
&div class="modal-header"&
&button type="button" class="close" data-dismiss="modal" aria-hidden="true"&&&/button&
&h3&对话框标题&/h3&
&div class="modal-body"&
&p&One fine body&&/p&
&div class="modal-footer"&
&a href="#" class="btn"&关闭&/a&
&a href="#" class="btn btn-primary"&Save changes&/a&
点击下面的按钮会通过javascript触发一个模态对话框。对话框从页面顶端滑下的同时逐渐呈现。
模态对话框中的文本
Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem.
Popover in a modal
should trigger a popover on click.
Tooltips in a modal
should have tooltips on hover.
Overflowing text to show optional scrollbar
We set a fixed max-height on the .modal-body. Watch it overflow with all this extra lorem ipsum text we've included.
Cras mattis consectetur purus sit amet fermentum. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.
Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.
Aenean lacinia bibendum nulla sed consectetur. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec sed odio dui. Donec ullamcorper nulla non metus auctor fringilla.
Cras mattis consectetur purus sit amet fermentum. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.
Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.
Aenean lacinia bibendum nulla sed consectetur. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec sed odio dui. Donec ullamcorper nulla non metus auctor fringilla.
<!-- Button to trigger modal --&
&a href="#myModal" role="button" class="btn" data-toggle="modal"&查看演示案例&/a&
<!-- Modal --&
&div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"&
&div class="modal-header"&
&button type="button" class="close" data-dismiss="modal" aria-hidden="true"&&&/button&
&h3 id="myModalLabel"&Modal header&/h3&
&div class="modal-body"&
&p&One fine body&&/p&
&div class="modal-footer"&
&button class="btn" data-dismiss="modal" aria-hidden="true"&关闭&/button&
&button class="btn btn-primary"&Save changes&/button&
通过data属性
无需编写JavaScript代码即可生成一个对话框。在一个主控元素,例如按钮,上设置data-toggle="modal",然后再设置data-target="#foo" 或href="#foo" 用以指向某个将要被启动的对话框。
&button type="button" data-toggle="modal" data-target="#myModal"&Launch modal&/button&
通过JavaScript
仅用一行JavaScript代码即可启动id为myModal的对话框:
$('#myModal').modal(options)
上面的选项都可以通过data属性或JavaScript代码传递给组件。对于data属性,将选项名称附着于data-字符串之后,就像data-backdrop=""一样。
为模态对话框添加一个背景元素。另外,为背景指定static时,点击模态对话框的外部区域不会将其关闭。
按下esc键时关闭模态对话框
初始化时即显示模态对话框
如果提供了远程url地址,就会通过 jQuery的load方法加载内容并注入到.modal-body中。如果你使用的是data属性api,你还可以使用href标签指定远程数据源。案例如下:
&a data-toggle="modal" href="remote.html" data-target="#modal"&click me&/a&
.modal(options)
让你指定的内容变成一个模态对话框。接受一个可选的参数object.
$('#myModal').modal({
keyboard: false
.modal('toggle')
手动打开或隐藏一个模态对话框。
$('#myModal').modal('toggle')
.modal('show')
手动打开一个模态对话框。
$('#myModal').modal('show')
.modal('hide')
手动隐藏一个模态对话框。
$('#myModal').modal('hide')
Bootstrap中的模态对话框对外暴露了一些事件允许你***。
当show方法被调用时,此事件将被立即触发。
当模态对话框呈现到用户面前时(会等待过渡效果执行结束)此事件被触发。
当hide方法被调用时,此事件被立即触发。
当模态对话框被隐藏(而且过渡效果执行完毕)之后,此事件将被触发。
$('#myModal').on('hidden', function () {
// do something…
通过此插件可以将下拉菜单加入到任何其他组件中,包括导航条、标签页。
导航条中的下拉菜单
标签页中的下拉菜单。
通过data属性
在链接或按钮上添加data-toggle="dropdown"即可切换下拉菜单。
&div class="dropdown"&
&a class="dropdown-toggle" data-toggle="dropdown" href="#"&Dropdown trigger&/a&
&ul class="dropdown-menu" role="menu" aria-labelledby="dLabel"&
为了保证URL符合规范,请使用data-target属性来代替href="#"。
&div class="dropdown"&
&a class="dropdown-toggle" id="dLabel" role="button" data-toggle="dropdown" data-target="#" href="/page.html"&
&b class="caret"&&/b&
&ul class="dropdown-menu" role="menu" aria-labelledby="dLabel"&
通过JavaScript
通过JavaScript调用下拉菜单:
$('.dropdown-toggle').dropdown()
$().dropdown('toggle')
通过编程式api对某个特定的导航条或标签页导航切换下拉菜单。
用在导航条上
ScrollSpy插件根据滚动的位置自动更新导航条中相应的导航项。拖动下面区域的滚动条,使其低于导航条的位置,注意观察active类的变化。下拉菜单中的子项也会跟着变为高亮状态。
Ad leggings keytar, brunch id art party dolor labore. Pitchfork yr enim lo-fi before they sold out qui. Tumblr farm-to-table bicycle rights whatever. Anim keffiyeh carles cardigan. Velit seitan mcsweeney's photo booth 3 wolf moon irure. Cosby sweater lomo jean shorts, williamsburg hoodie minim qui you probably haven't heard of them et cardigan trust fund culpa biodiesel wes anderson aesthetic. Nihil tattooed accusamus, cred irony biodiesel keffiyeh artisan ullamco consequat.
Veniam marfa mustache skateboard, adipisicing fugiat velit pitchfork beard. Freegan beard aliqua cupidatat mcsweeney's vero. Cupidatat four loko nisi, ea helvetica nulla carles. Tattooed cosby sweater food truck, mcsweeney's quis non freegan vinyl. Lo-fi wes anderson +1 sartorial. Carles non aesthetic exercitation quis gentrify. Brooklyn adipisicing craft beer vice keytar deserunt.
Occaecat commodo aliqua delectus. Fap craft beer deserunt skateboard ea. Lomo bicycle rights adipisicing banh mi, velit ea sunt next level locavore single-origin coffee in magna veniam. High life id vinyl, echo park consequat quis aliquip banh mi pitchfork. Vero VHS est adipisicing. Consectetur nisi DIY minim messenger bag. Cred ex in, sustainable delectus consectetur fanny pack iphone.
In incididunt echo park, officia deserunt mcsweeney's proident master cleanse thundercats sapiente veniam. Excepteur VHS elit, proident shoreditch +1 biodiesel laborum craft beer. Single-origin coffee wayfarers irure four loko, cupidatat terry richardson master cleanse. Assumenda you probably haven't heard of them art party fanny pack, tattooed nulla cardigan tempor ad. Proident wolf nesciunt sartorial keffiyeh eu banh mi sustainable. Elit wolf voluptate, lo-fi ea portland before they sold out four loko. Locavore enim nostrud mlkshk brooklyn nesciunt.
Ad leggings keytar, brunch id art party dolor labore. Pitchfork yr enim lo-fi before they sold out qui. Tumblr farm-to-table bicycle rights whatever. Anim keffiyeh carles cardigan. Velit seitan mcsweeney's photo booth 3 wolf moon irure. Cosby sweater lomo jean shorts, williamsburg hoodie minim qui you probably haven't heard of them et cardigan trust fund culpa biodiesel wes anderson aesthetic. Nihil tattooed accusamus, cred irony biodiesel keffiyeh artisan ullamco consequat.
Keytar twee blog, culpa messenger bag marfa whatever delectus food truck. Sapiente synth id assumenda. Locavore sed helvetica cliche irony, thundercats you probably haven't heard of them consequat hoodie gluten-free lo-fi fap aliquip. Labore elit placeat before they sold out, terry richardson proident brunch nesciunt quis cosby sweater pariatur keffiyeh ut helvetica artisan. Cardigan craft beer seitan readymade velit. VHS chambray laboris tempor veniam. Anim mollit minim commodo ullamco thundercats.
通过data属性
只需将data-spy="scroll"添加到被***的页面元素上(大部分情况是添加到body上),然后将data-target=".navbar"添加到导航部分,仅此而已,顶部导航条就拥有了***滚动的功能。你可能希望将滚动***应用到.nav组件上。
&body data-spy="scroll" data-target=".navbar"&...&/body&
通过JavaScript
通过JavaScript启动滚动***:
$('#navbar').scrollspy()
.scrollspy('refresh')
当滚动***所作用的DOM有增删页面元素的操作时,需要调用下面的refresh方法:
$('[data-spy="scroll"]').each(function () {
var $spy = $(this).scrollspy('refresh')
所有参数都可以通过data属性或JavaScript传递。对于data属性,将参数名附着到data-后面,就像data-offset=""一样。
Pixels to offset from top when calculating position of scroll.
每当新条目被激活时,此事件被触发。
Add quick, dynamic tab functionality to transition through panes of local content, even via dropdown menus.
Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park.
Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork. Williamsburg banh mi whatever gluten-free, carles pitchfork biodiesel fixie etsy retro mlkshk vice blog. Scenester cred you probably haven't heard of them, vinyl craft beer blog stumptown. Pitchfork sustainable tofu synth chambray yr.
Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY, art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater. Lomo wolf viral, mustache readymade thundercats keffiyeh craft beer marfa ethical. Wolf salvia freegan, sartorial keffiyeh echo park vegan.
通过JavaScript启动标签页(每个标签都需要被单独激活):
$('#myTab a').click(function (e) {
e.preventDefault();
$(this).tab('show');
你可以通过多种方式激活标签页:
$('#myTab a[href="#profile"]').tab('show'); // Select tab by name
$('#myTab a:first').tab('show'); // Select first tab
$('#myTab a:last').tab('show'); // Select last tab
$('#myTab li:eq(2) a').tab('show'); // Select third tab (0-indexed)
无需写任何JavaScript代码,只需简单的为页面元素指定data-toggle="tab" 或 data-toggle="pill"属性即可激活标签页或胶囊式标签页。为ul添加nav 和nav-tabs classe,即可为其添加Bootstrap的标签页样式。
&ul class="nav nav-tabs"&
&li&&a href="#home" data-toggle="tab"&首页&/a&&/li&
&li&&a href="#profile" data-toggle="tab"&Profile&/a&&/li&
&li&&a href="#messages" data-toggle="tab"&Messages&/a&&/li&
&li&&a href="#settings" data-toggle="tab"&Settings&/a&&/li&
激活某个标签页和对应的内容容器。应当为标签页指定data-target 或 href用以标记DOM树中的目标容器节点。
&ul class="nav nav-tabs" id="myTab"&
&li class="active"&&a href="#home"&首页&/a&&/li&
&li&&a href="#profile"&Profile&/a&&/li&
&li&&a href="#messages"&Messages&/a&&/li&
&li&&a href="#settings"&Settings&/a&&/li&
&div class="tab-content"&
&div class="tab-pane active" id="home"&...&/div&
&div class="tab-pane" id="profile"&...&/div&
&div class="tab-pane" id="messages"&...&/div&
&div class="tab-pane" id="settings"&...&/div&
$(function () {
$('#myTab a:last').tab('show');
当标签页显示之前将触发此事件。使用event.target 和 event.relatedTarget分别定位当前活动标签页和上一次的活动标签页(如果有的话)。
当标签页显示出来之后,此事件将被触发。使用event.target 和 event.relatedTarget分别定位当前活动标签页和上一次的活动标签页(如果有的话)。
$('a[data-toggle="tab"]').on('shown', function (e) {
e.target // activated tab
e.relatedTarget // previous tab
本插件受到Jason Frame开发的jQuery.tipsy插件的启发。Tooltips做了很多改进,例如不需要依赖图片,而是改用CSS3实现动画效果,用data属性存储标题信息。
出于性能方面的考虑,工具提示和弹出提示的data属性API是选择性加入的,也即是说你必要自己初始化他们。
将鼠标停悬在下面的链接上查看工具提示:
Tight pants next level keffiyeh
haven't heard of them. Photo booth beard raw denim letterpress vegan messenger bag stumptown. Farm-to-table seitan, mcsweeney's fixie sustainable quinoa 8-bit american apparel
terry richardson vinyl chambray. Beard stumptown, cardigans banh mi lomo thundercats. Tofu biodiesel williamsburg marfa, four loko mcsweeney's cleanse vegan chambray. A really ironic artisan , scenester farm-to-table banksy Austin
freegan cred raw denim single-origin coffee viral.
输入框组中的工具提示
将工具提示和弹出提示与Bootstrap中的输入框组一同使用时,为了避免不必要的影响,你需要设置container(文档如下):
通过JavaScript触发工具提示:
$('#example').tooltip(options)
可以通过data属性或JavaScript传递参数。对于data属性,将参数名附着到data-后面即可,例如, data-animation=""。
apply a css fade transition to the tooltip
Insert html into the tooltip. If false, jquery's text method will be used to insert content into the dom. Use text if you're worried about XSS attacks.
string | function
how to position the tooltip - top | bottom | left | right
If a selector is provided, tooltip objects will be delegated to the specified targets.
string | function
default title value if `title` tag isn't present
'hover focus'
how tooltip is triggered - click | hover | focus | manual. Note you case pass trigger mutliple, space seperated, trigger types.
number | object
delay showing and hiding the tooltip (ms) - does not apply to manual trigger type
If a number is supplied, delay is applied to both hide/show
Object structure is: delay: { show: 500, hide: 100 }
string | false
Appends the tooltip to a specific element container: 'body'
&a href="#" data-toggle="tooltip" title="first tooltip"&hover over me&/a&
$().tooltip(options)
对一组页面元素绑定一个工具提示处理器。
.tooltip('show')
弹出某个页面元素的工具提示。
$('#element').tooltip('show')
.tooltip('hide')
隐藏某个页面元素的工具提示。
$('#element').tooltip('hide')
.tooltip('toggle')
打开或隐藏某个页面元素的工具提示。
$('#element').tooltip('toggle')
.tooltip('destroy')
隐藏并销毁某个页面元素的工具提示。
$('#element').tooltip('destroy')
对任意页面元素添加一个覆盖层展示额外信息,就行iPad中的类似功能。将鼠标悬停在下面的按钮上即可触发一个弹出提示。必须先引入
静态弹出提示
有4个可选参数:top、right、bottom和left 对其方式。
Popover top
Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.
Popover right
Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.
Popover bottom
Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.
Popover left
Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.
No markup shown as popovers are generated from JavaScript and content within a data attribute.
Four directions
通过JavaScript启用弹出提示:
$('#example').popover(options)
可以通过data属性或JavaScript传递参数。对于data属性,将参数名附着到data-之后,例如data-animation=""。
apply a css fade transition to the tooltip
Insert html into the popover. If false, jquery's text method will be used to insert content into the dom. Use text if you're worried about XSS attacks.
string | function
how to position the popover - top | bottom | left | right
if a selector is provided, tooltip objects will be delegated to the specified targets
how popover is triggered - click | hover | focus | manual
string | function
default title value if `title` attribute isn't present
string | function
default content value if `data-content` attribute isn't present
number | object
delay showing and hiding the popover (ms) - does not apply to manual trigger type
If a number is supplied, delay is applied to both hide/show
Object structure is: delay: { show: 500, hide: 100 }
string | false
Appends the popover to a specific element container: 'body'
For performance reasons, the Tooltip and Popover data-apis are opt in. If you would like to use them just specify a selector option.
$().popover(options)
对一组页面元素初始化弹出提示。
.popover('show')
打开某个页面元素的弹出提示。
$('#element').popover('show')
.popover('hide')
隐藏某个页面元素的弹出提示。
$('#element').popover('hide')
.popover('toggle')
打开或隐藏某个页面元素的弹出提示。
$('#element').popover('toggle')
.popover('destroy')
隐藏并销毁某个页面元素的弹出提示。
$('#element').popover('destroy')
警告框案例
利用此插件对所有警告消息添加取消功能。
Holy guacamole! Best check yo self, you're not looking too good.
Change this and that and try again. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cras mattis consectetur purus sit amet fermentum.
通过JavaScript为某个警告框添加取消功能:
$(".alert").alert()
仅需将data-dismiss="alert"添加到关闭按钮即可自动赋予某个警告框关闭的功能。
&a class="close" data-dismiss="alert" href="#"&&&/a&
$().alert()
赋予所有警告框以关闭功能。如果你希望警告框在关闭时带有动画效果,请确保.fade 和.in类已经应用到这些警告框上了。
.alert('close')
关闭某个警告框。
$(".alert").alert('close')
Bootstrap中的警告框对外暴露了一些事件允许你***。
当close方法被调用时,此事件被立即触发。
当警告框被关闭后(将会等到css过渡效果执行结束),此事件被触发。
$('#my-alert').bind('closed', function () {
// do something…
按钮可以实现很多功能。为工具条(toolbar)之类的组件赋予控制按钮的状态或者创建一组按钮的功能。
添加data-loading-text="正在加载"可以为按钮设置正在加载状态。
&button type="button" class="btn btn-primary" data-loading-text="Loading..."&Loading state&/button&
添加data-toggle="button"可以激活单个按钮的选中状态。
Single Toggle
&button type="button" class="btn btn-primary" data-toggle="button"&Single Toggle&/button&
添加data-toggle="buttons-checkbox"可以为按钮组添加复选框样式的勾选风格。
&div class="btn-group" data-toggle="buttons-checkbox"&
&button type="button" class="btn btn-primary"&Left&/button&
&button type="button" class="btn btn-primary"&Middle&/button&
&button type="button" class="btn btn-primary"&Right&/button&
添加data-toggle="buttons-radio"为按钮组添加单选框样式的选中风格。
&div class="btn-group" data-toggle="buttons-radio"&
&button type="button" class="btn btn-primary"&Left&/button&
&button type="button" class="btn btn-primary"&Middle&/button&
&button type="button" class="btn btn-primary"&Right&/button&
通过JavaScript激活按钮:
$('.nav-tabs').button()
按钮插件的Data属性是完整的。通过下面的案例可以看到各种类型的标记。
$().button('toggle')
Toggles push state. Gives the button the appearance that it has been activated.
&button type="button" class="btn" data-toggle="button" &…&/button&
$().button('loading')
Sets button state to loading - disables button and swaps text to loading text. Loading text should be defined on the button element using the data attribute data-loading-text.
&button type="button" class="btn" data-loading-text="loading stuff..." &...&/button&
$().button('reset')
Resets button state - swaps text to original text.
$().button(string)
Resets button state - swaps text to any data defined text state.
&button type="button" class="btn" data-complete-text="finished!" &...&/button&
$('.btn').button('complete')
给可折叠的组件,如手风琴式的切换和导航,提供基本和灵活的样式。
* 需要包含过渡效果插件。
通过折叠插件,我们可以创建一个简单的手风琴式的组件:
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
&div class="accordion" id="accordion2"&
&div class="accordion-group"&
&div class="accordion-heading"&
&a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapseOne"&
Collapsible Group Item #1
&div id="collapseOne" class="accordion-body collapse in"&
&div class="accordion-inner"&
Anim pariatur cliche...
&div class="accordion-group"&
&div class="accordion-heading"&
&a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapseTwo"&
Collapsible Group Item #2
&div id="collapseTwo" class="accordion-body collapse"&
&div class="accordion-inner"&
Anim pariatur cliche...
使用此插件时可以无需写任何标记。让按钮控制另一个元素进行展开和折叠。
&button type="button" class="btn btn-danger" data-toggle="collapse" data-target="#demo"&
simple collapsible
&div id="demo" class="collapse in"& … &/div&
通过data属性
Just add data-toggle="collapse" and a data-target to element to automatically assign control of a collapsible element. The data-target attribute accepts a css selector to apply the collapse to. Be sure to add the class collapse to the collapsible element. If you'd like it to default open, add the additional class in.
To add accordion-like group management to a collapsible control, add the data attribute data-parent="#selector". Refer to the demo to see this in action.
通过JavaScript
手动调用:
$(".collapse").collapse()
项的传递可通过data属性或JavaScript。对于data属性,需要附加选项名称data-,例如data-parent=""。
If selector then all collapsible elements under the specified parent will be closed when this collapsible item is shown. (similar to traditional accordion behavior)
Toggles the collapsible element on invocation
.collapse(options)
Activates your content as a collapsible element. Accepts an optional options object.
$('#myCollapsible').collapse({
toggle: false
.collapse('toggle')
Toggles a collapsible element to shown or hidden.
.collapse('show')
Shows a collapsible element.
.collapse('hide')
Hides a collapsible element.
Bootstrap's collapse class exposes a few events for hooking into collapse functionality.
This event fires immediately when the show instance method is called.
This event is fired when a collapse element has been made visible to the user (will wait for css transitions to complete).
This event is fired immediately when the hide method has been called.
This event is fired when a collapse element has been hidden from the user (will wait for css transitions to complete).
$('#myCollapsible').on('hidden', function () {
// do something…
下面就是一个轮播组件的案例。
First Thumbnail label
Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.
Second Thumbnail label
Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.
Third Thumbnail label
Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.
&div id="myCarousel" class="carousel slide"&
&ol class="carousel-indicators">
&li data-target="#myCarousel" data-slide-to="0" class="active">&/li>
&li data-target="#myCarousel" data-slide-to="1">&/li>
&li data-target="#myCarousel" data-slide-to="2">&/li>
&!-- Carousel items --&
&div class="carousel-inner"&
&div class="active item"&…&/div&
&div class="item"&…&/div&
&div class="item"&…&/div&
&!-- Carousel nav --&
&a class="carousel-control left" href="#myCarousel" data-slide="prev"&&&/a&
&a class="carousel-control right" href="#myCarousel" data-slide="next"&&&/a&
当使用轮播组件时,请将案例中的图片替换为你需要展示的图片。
通过data属性
使用data属性可以很容易的控制轮播的位置。data-slide内可以包含prev 或 next,他们可以改变当前帧。另外,使用data-slide-to可以传递某个帧的下标,例如data-slide-to="2",这样就可以直接跳转到这个指定的帧 -- 下标从0开始计算。
通过JavaScript
手工启动轮播:
$('.carousel').carousel()
参数可以通过data属性或JavaScript传递。对于data属性,将参数名称附着到data-之后,例如data-interval=""。
在自动轮播过程中,展示每帧所停留的时间。如果是false,轮播不会自动启动。
当鼠标在轮播区域内时暂停循环,在区域外时则继续循环。
.carousel(options)
初始化一个带有可选参数object的轮播,并且自动开始循环播放。
$('.carousel').carousel({
interval: 2000
.carousel('cycle')
从左向右循环播放。
.carousel('pause')
停止循环播放。
.carousel(number)
循环到指定帧(下标从0开始,类似数组)。
.carousel('prev')
返回到上一帧。
.carousel('next')
Bootstrap的轮播插件对外暴露了两个可被***的事件。
当slide实例方法被调用时,此事件会被立即触发。
当切换完一帧后触发。
本页面左侧就是一个附加导航的实际案例。
通过data属性
只需添加data-spy="affix"到任意需要***的页面元素上,就可以很容易的将其变为附加导航。然后使用偏移量来控制其位置。
&div data-spy="affix" data-offset-top="200"&...&/div&
通过JavaScript
通过JavaScript启动:
$('#navbar').affix()
选项的传递可通过数据属性或JavaScript. 对于数据属性, 需要附加选项名称 data-,例如data-offset-top="200"。
number | function | object
计算从顶部到滚动的位置的偏移(像素). 如果设置了一个数字, 该偏移量的值将被应用在顶部和左方向. 如果要设置一个方向或者多个方向的偏移量, 只需提供一个对象offset: { x: 10 }。该函数可以让你动态的提供一个偏移量(对于一些响应式设计很有用)。

参考资料

 

随机推荐