completed Box beat box是什么意思思

58cv网址导航线程问题,MessageBox.Show()
[问题点数:20分,结帖人wangxianshou]
线程问题,MessageBox.Show()
[问题点数:20分,结帖人wangxianshou]
不显示删除回复
显示所有回复
显示星级回复
显示得分回复
只显示楼主
相关帖子推荐:
本帖子已过去太久远了,不再提供回复功能。[转载]弹出框colorbox参数
ColorBox accepts settings from an object of key/value pairs, and
can be assigned to any HTML element.
// Format:
$(selector).colorbox({key:value, key:value, key:value});
// Examples:
// Image links displayed as a group
$('a.gallery').colorbox({rel:'gal'});
$('a#login').colorbox();
// Called directly, without assignment to an element:
$.colorbox({href:"thankyou.html"});
// Called directly with HTML
$.colorbox({html:"&h1&Welcome&/h1&"});
// ColorBox can accept a function in place of a static value:
$("a.gallery").colorbox({rel: 'gal', title: function(){
var url = $(this).attr('href');
return '&a href="' + url + '" target="_blank"&Open In New Window&/a&';
Description
transition
The transition type. Can be set to "elastic", "fade", or
Sets the speed of the fade and elastic transitions, in
milliseconds.
This can be used as an alternative anchor URL or to associate a URL
for non-anchor elements such as images or form buttons.
$("h1").colorbox({href:"welcome.html"});
This can be used as an anchor title alternative for ColorBox.
This can be used as an anchor rel alternative for ColorBox. This
allows the user to group any combination of elements together for a
gallery, or to override an existing rel so elements are not grouped
$("a.gallery").colorbox({rel:"group1"});
Note: The value can also be set to 'nofollow' to disable
scalePhotos
If true, and if maxWidth, maxHeight, innerWidth, innerHeight,
width, or height have been defined, ColorBox will scale photos to
fit within the those values.
If false, ColorBox will hide scrollbars for overflowing content.
This could be used on conjunction with the resize method (see
below) for a smoother transition if you are appending content to an
already open instance of ColorBox.
The overlay opacity level. Range: 0 to 1.
If true, ColorBox will immediately open.
returnFocus
If true, focus will be returned when ColorBox exits to the element
it was launched from.
fastIframe
If false, the loading graphic removal and onComplete event will be
delayed until iframe's content has completely loaded.
preloading
Allows for preloading of 'Next' and 'Previous' content in a group,
after the current content has finished loading. Set to false to
overlayClose
If false, disables closing ColorBox by clicking on the background
If false, will disable closing colorbox on 'esc' key press.
If false, will disable the left and right arrow keys from
navigating between the items in a group.
If false, will disable the ability to loop back to the beginning of
the group when on the last element.
"image {current} of {total}"
Text or HTML for the group counter while viewing a group. {current}
and {total} are detected and replaced with actual numbers while
ColorBox runs.
"previous"
Text or HTML for the previous button while viewing a group.
Text or HTML for the next button while viewing a group.
Text or HTML for the close button. The 'esc' key will also close
For submitting GET or POST values through an ajax request. The data
property will act exactly like jQuery's&&data
argument, as ColorBox uses .load() for ajax handling.
Content Type
If true, specifies that content should be displayed in an
If true, content from the current document can be displayed by
passing the href property a jQuery selector, or jQuery object.
// Using a selector:
$("#inline").colorbox({inline:true, href:"#myForm"});
// Using a jQuery object:
var $form = $("#myForm");
$("#inline").colorbox({inline:true, href:$form});
For displaying a string of HTML or text.
$.colorbox({html:"&p&Hello&/p&"});
If true, this setting forces ColorBox to display a link as a photo.
Use this when automatic photo detection fails (such as using a url
like 'photo.php' instead of 'photo.jpg')
This property isn't actually used as ColorBox assumes all hrefs
should be treated as either ajax or photos, unless one of the other
content types were specified.
Dimensions
Set a fixed total width. This includes borders and buttons.
Example: "100%", "500px", or 500
Set a fixed total height. This includes borders and buttons.
Example: "100%", "500px", or 500
innerWidth
This is an alternative to 'width' used to set a fixed inner width.
This excludes borders and buttons. Example: "50%", "500px", or
innerHeight
This is an alternative to 'height' used to set a fixed inner
height. This excludes borders and buttons. Example: "50%", "500px",
initialWidth
Set the initial width, prior to any content being loaded.
initialHeight
Set the initial height, prior to any content being loaded.
Set a maximum width for loaded content. Example: "100%", 500,
Set a maximum height for loaded content. Example: "100%", 500,
If true, adds an automatic slideshow to a content group /
slideshowSpeed
Sets the speed of the slideshow, in milliseconds.
slideshowAuto
If true, the slideshow will automatically start to play.
slideshowStart
"start slideshow"
Text for the slideshow start button.
slideshowStop
"stop slideshow"
Text for the slideshow stop button
Positioning
If true, ColorBox will be displayed in a fixed position within the
visitor's viewport. This is unlike the default absolute positioning
relative to the document.
Accepts a pixel or percent value (50, "50px", "10%"). Controls
ColorBox's vertical positioning instead of using the default
position of being centered in the viewport.
Accepts a pixel or percent value (50, "50px", "10%"). Controls
ColorBox's vertical positioning instead of using the default
position of being centered in the viewport.
Accepts a pixel or percent value (50, "50px", "10%"). Controls
ColorBox's horizontal positioning instead of using the default
position of being centered in the viewport.
Accepts a pixel or percent value (50, "50px", "10%"). Controls
ColorBox's horizontal positioning instead of using the default
position of being centered in the viewport.
Callback that fires right before ColorBox begins to open.
Callback that fires right before attempting to load the target
onComplete
Callback that fires right after loaded content is displayed.
Callback that fires at the start of the close process.
Callback that fires once ColorBox is closed.
Public Methods
$.colorbox()
This method allows you to call ColorBox without having to assign it
to an element.
$.colorbox({href:"login.php"});
$.colorbox.next()
$.colorbox.prev()
These methods moves to the next and previous items in a group and
are the same as pressing the 'next' or 'previous' buttons.
$.colorbox.close()
This method initiates the close sequence, which does not
immediately complete. The lightbox will be completely closed only
when the 'cbox_closed' event / onClosed callback is fired.
$.colorbox.element()
This method is used to fetch the current HTML element that ColorBox
is associated with. Returns a jQuery object containing the element.
var $element = $.colorbox.element();
$.colorbox.resize()
This allows ColorBox to be resized based on it's own
auto-calculations, or to a specific size. This must be called
manually after ColorBox's content has loaded. The optional
parameters object can accept 'width' or 'innerWidth' and 'height'
or 'innerHeight'. Without specifying a width or height, ColorBox
will attempt to recalculate the height of it's current
$.colorbox.remove()
Removes all traces of ColorBox from the document. Not the same as
$.colorbox.close(), which tucks colorbox away for future use.
Event Hooks
These event hooks fire at the same time as their corresponding
callbacks (ie. cbox_complete & onComplete), but can
be used to make a universal change to ColorBox, while callbacks are
only applied to selected elements.
// Example of using an event listener and public method to build a primitive slideshow:
$(document).bind('cbox_complete', function(){
setTimeout($.colorbox.next, 1500);
triggers when ColorBox is first opened, but after a few key
variable assignments take place.
triggers at the start of the phase where content type is determined
and loaded.
cbox_complete
triggers when the transition has completed and the newly loaded
content has been revealed.
cbox_cleanup
triggers as the close method begins.
cbox_closed
triggers as the close method ends.
以上网友发言只代表其个人观点,不代表新浪网的观点或立场。

我要回帖

更多关于 beat box是什么意思 的文章

 

随机推荐