search
HomeWeb Front-endJS Tutorialjquery tools series expose learning_jquery

For example, when learning overlay, first give the html target code of the operation:

Copy the code The code is as follows:


expose test!



jquery tools series expose learning_jquery






This function is implemented through the jqueryObject.expose() method. The specific implementation method is as follows:
$("jquery selector").expose({config object}) //This method is customized through the configuration object. display of expose.
The following code describes the configuration parameters:
closeOnClickThis attribute is used to set whether to close the
Attributes Default value Detailed description
color '#456' Set the background color of the non-expose (highlight) area when the expose (highlight) effect is displayed. If the background color is not set here, the expose function will provide a default color. In addition, attributes can also be set through the CSS style of maskId.
opacity 0.8 The non-expose(highlight) in the settings page is in the The background transparency when the expose (highlight) effect is displayed. The value range of transparency here is [0,1]. The larger the value, the lower the transparency.
loadSpeed 'slow' Set the display speed of the non-expose (highlighted) area in the page when the expose (highlighted) effect is triggered. The value here can be set to: 'slow', 'normal', 'fast' and millisecond value. For example: If the value set here is 2000, then the non-exposed (highlighted) area effect will be displayed within 2 seconds. If the value here is set to 0, then the non-expose (highlighted) area will have no animation effect and will be displayed immediately.
closeSpeed 'fast' The non-expose(highlight) in the settings page is in the The expose (highlight) closing speed when the effect is turned off. The value here can be set to: 'slow', 'normal', 'fast' and millisecond value. For specific examples, see the relevant examples in this article.
 
maskId 'exposeMask' Non-expose (highlighted) area corresponding to the page div elementid, which is a normal div element, when expose( highlights ) After being triggered, it will automatically adjust to completely cover the entire page. The display effect of non-expose(highlighted) area can be set by setting the div style to change. If there is no setting here, the plugin will provide a id by default as exposeMask. > to implement non-expose areas.
TRUE expose( highlight when the non-expose area is clicked Display ) effect.The default value of this attribute is true, and after the non-expose area is clicked, exposeThe effect is turned off.
closeOnEsc TRUE This attribute is used to set whether to close the expose( highlight after the Esc key is pressed Display ) effect. The default value of this attribute is true, and after the Esc key is pressed, exposeThe effect is turned off.
zIndex 9998 Set the z-index (CSS) attribute of the non-exposed (highlighted) area in the page settings page. Under normal circumstances, the default zIndex attribute value is very large, so there is no need to set it here. However, one thing to note is that the z-index attribute value of the non-exposed (highlighted) must be larger than any element on the page. z-index attribute.
api FALSE For the explanation of this attribute, please refer to the explanation of attributes with the same functions such as tabs, scollable in this series.
 
onBeforeLoad   expose(Highlight) Function called before the effect is triggered. If the function returns false, then expose(highlight effect) will blocked from implementation.
onLoad   expose (highlight) After the effect is achieved, , this function is triggered.
onBeforeClose   expose (highlight) function is called before the effect is turned off. If the function returns false, then expose(highlight effect) will Blocked from closing.
onClose   expose(突出显示)效果关闭后,该函数被触发。
In addition, expose also provides a series of methods for obtaining expose objects. The descriptions of these methods are as follows:
Method Return value Detailed description
load() API triggerexpose(highlight)effect, This method can only be called successfully after expose(highlight) is initialized.
close() API Close the expose(Highlight) effect.
isLoaded() boolean Determine whether the current expose(highlighted) has been triggered.
getMask() jQuery returns expose(highlight)jqueryObject. Non-expose(highlight) can be changed through the related methods of jquery The display effect of the area.
getExposed() jQuery returns expose(highlight)'s jquery Object.
getConf() Object Returns the configuration object of expose(highlighted).
 
onBeforeLoad(fn) API Same as the onBeforeLoad attribute in the configuration file.
onLoad(fn) API Same as the onLoad attribute in the configuration file.
onBeforeClose(fn) API 同配置文件中onBeforeClose属性。
onClose(fn) API 同配置文件中onClose属性。
The specific usage of expose configuration object property setting and method calling is as follows:
Copy code The code is as follows:

var testApi=$("#test").expose({
color:'#44f',
opacity:0.5,
loadSpeed:2000,
closeS speed:3000,
closeOnClick:false,
closeOnEsc:false,
api: true,
lazy:true,
onBeforeLoad:function(){
alert("before load!");
},
onLoad:function(){
alert("onLoad!");
onBeforeClose:function(){
alert("mask-background:" this.getMask ().css("color") ",exposeId:" this.getExposed().attr("id")
                                                                                    ("Before close!");
         },
                                                                                   });

                                                                                                                                                                                       function(){
testApi.load();
});
$("#btn_close").click(function(){
testApi.close();
}) ;

alert("test is load:" testApi.isLoaded());

$("#ball").expose({
//Style through maskId here backgroundcolor to set the color attribute Exposed().animate ({width: 298});
},
onbeForeClose: Function () {
this.Getexpose (). Animate ({width: 130}); }).click(function(){
          $(this).expose().load();
      });


Finally, the complete sample code and this function are given Get some demo pictures:




Copy code


The code is as follows:

BR>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">





    expose test!



    jquery tools series expose learning_jquery






Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Python vs. JavaScript: A Comparative Analysis for DevelopersPython vs. JavaScript: A Comparative Analysis for DevelopersMay 09, 2025 am 12:22 AM

The main difference between Python and JavaScript is the type system and application scenarios. 1. Python uses dynamic types, suitable for scientific computing and data analysis. 2. JavaScript adopts weak types and is widely used in front-end and full-stack development. The two have their own advantages in asynchronous programming and performance optimization, and should be decided according to project requirements when choosing.

Python vs. JavaScript: Choosing the Right Tool for the JobPython vs. JavaScript: Choosing the Right Tool for the JobMay 08, 2025 am 12:10 AM

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript: Understanding the Strengths of EachPython and JavaScript: Understanding the Strengths of EachMay 06, 2025 am 12:15 AM

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScript's Core: Is It Built on C or C  ?JavaScript's Core: Is It Built on C or C ?May 05, 2025 am 12:07 AM

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript Applications: From Front-End to Back-EndJavaScript Applications: From Front-End to Back-EndMay 04, 2025 am 12:12 AM

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

JavaScript Frameworks: Powering Modern Web DevelopmentJavaScript Frameworks: Powering Modern Web DevelopmentMay 02, 2025 am 12:04 AM

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

The Relationship Between JavaScript, C  , and BrowsersThe Relationship Between JavaScript, C , and BrowsersMay 01, 2025 am 12:06 AM

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.