Foreword:
Recently, I am particularly interested in the plug-in encapsulation of js. With the current technology, it is still difficult to completely encapsulate js, so I encapsulated a small plug-in based on jQuery, and it was developed based on the object level. Not adding a global method. There is almost no advanced syntax. There is a return: foreach() method to return the object instance itself, and an extend() function to extend the properties of the parameter object. This is also to facilitate the chaining of the object after adjusting my method. type operation.
Plug-in package download address: Click here to download
Plug-in name: Dynamic Cloud Tag
Plug-in features:
Dynamicly generate a tag within the specified block-level element
The height, width, position, number of layers, and background color of the a label are randomly controllable
The a label fades in and out, and the initial transparency can be changed
The speed of a label creation and movement speed are controllable (timer)
The step size of a label movement can be controlled (distance moved in each cycle)
When the mouse is hovering, the animation will be stopped with maximum transparency and the highest number of layers. When the mouse leaves, the previous state will be restored
Encountering a problem:
At present, the plug-in can run normally, but if you switch the browser tab and the plug-in page is not displayed, and then switch back after a while, there will be a lag. I don’t know what the situation is yet. Please give me some advice if you know more about it. , there are a lot of areas that need to be optimized. If you have any good ideas, please bring them up so that I can make corrections in a timely manner.
Animation effect:
Khan: The gif image may be a bit big and will move after a while. Be patient
JS code snippet:
(function($){
$.fn.activiTag = function(opts) {
opts = $.extend({
move_step:2, // element movement step size--px
move_speed:40, // Element movement speed--ms
init_speed:1000,//Element creation speed--ms
min_opacity:0, max_grain: 10, // Maximum grain size
// A label array > a_List: ["Please add elements","Spring Jpa detailed explanation","javamailmail"], // a tag string array
// Background color array
color_List: ['#CD2626','#8b4513','#696969','#ff8c00','#6495ED'] ; },opts||{});
var aTag = $(this); // Current container object
var T_width = aTag.width(), T_height = aTag.height(); // Container height, width
return this.each(function(){
Function settatagcss () {// Set the corresponding CSS
aTag.css({position:'relative',overflow:'hidden'});
}
function getRandomNum(Min, Max){ // Get random numbers within two intervals
Min = new Number(Min);Max = new Number(Max);
var Range = Max - Min 1;
var Rand = Math.random();
return Min Math.floor(Rand * Range);
}
Function getrandomxy (num) {// Randomly return a positive/negative parameter
num = new Number(num); If(Math.random() num = -num;
return num;
}
/**
* Randomly create a tag with a width of one-third of the width of the container, and then based on itself - one-fifth of the width
* Height is one-third of its own width, then - one-third
*/
function createATag() {
var i = getRandomNum(0,opts.a_List.length-1);
var a = $(opts.a_List[i]); aTag.append(a);
return a;
}
/**Set a tag css style **/
function setCss(a) {
var w = Math.ceil(T_width/3) getRandomXY(T_width/60);
var h = Math.ceil(w/3) getRandomXY(w/36); // Row height
var zIndex = Math.ceil(Math.random()*400); var rdmOpcy = getRandomNum(new Number(opts.min_opacity),0);
// Line height, number of layers, transparency
a.css({
opacity:rdmOpcy,
zIndex: zIndex,
lineHeight:h 'px',
position: 'absolute',
textDecoration:'none',
textAlign:'center',
borderRadius: '3px',
color:'#FFFFFF',
whiteSpace: 'nowrap',
});
return a;
}
/**Calculate the initial position of the label relative to the container (X_Y coordinates) **/
function setXY(a) {
var x = getRandomNum(0,(T_width-a.width()));
var y = getRandomNum(0,T_height/10);
a.css({left:x 'px', bottom:y 'px'});
return a;
}
/**Set random background color **/
function setColor(a) {
var i = Math.ceil(Math.random()*opts.color_List.length -1);
a.css({backgroundColor:opts.color_List[i]})
}
/**Constructor entry **/
function construct() {
var a = createATag();
setCss(a); setColor(a); // color
setXY(a); return a;
}
/**Animation timer function **/
function interVal(a,s_opcy,botm,n,space,s) {
var opcy = a.css('opacity'); // Transparency
var botm_ = a.css('bottom').replace('px',''); // Real-time bottom distance
var opcy_ = parseFloat(new Number(a.css('opacity'))) s_opcy; // Transparency
var _opcy_ = parseFloat(new Number(a.css('opacity'))) - s_opcy; // --Transparency
var fall = botm_ - botm; // Moved distance
botm_ = new Number(botm_) new Number(opts.move_step);
a.css({
display: 'block',
bottom: botm_,
});
If(fall {A.CSS ({OPACITY: OPCY_})}
else if(2*n ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, If (botm_ >= space)
{
a.remove();
}
}
function init() {
If(aTag.children('a').length >= new Number(opts.max_grain))
Return;
var a = construct();
var opcy = a.css('opacity'); // Transparency
var zInx = a.css('zIndex'); var botm = a.css('bottom').replace('px',''); // Initial distance to bottom
var space = T_height - a.height() - a.css('bottom').replace('px',''); // Distance to move
var n = space/3; var step = 1-opcy; var sec = n/opts.move_step*opts.move_speed/1000; // Distance/single step length * single step length seconds = number of seconds required
var s_opcy = opts.move_speed/1000/sec * step; // The transparency value that needs to be transformed in each loop
var speed_ = getRandomNum(new Number(opts.move_speed)-30,new Number(opts.move_speed) 30);
Var Curropcy; // Record the transparency when the mouse is moved
// console.log(opts.move_speed '....' speed_)
/**Element movement loop **/
var s = setInterval(function(){
interVal(a,s_opcy,botm,n,space,s);
}, speed_)
A.Mouseover (function () {// mouse moves
currOpcy = a.css('opacity');
$(this).css({
zIndex: 401,
Opacity: 1
});
});
a.mouseout(function(){ // Mouse out
$(this).css({
zIndex: zInx,
Opacity: currOpcy
});
s= setInterval(function(){
interVal(a,s_opcy,botm,n,space,s);
},speed_);
});
}
setATagCss();
setInterval(init,opts.init_speed);
});
}
})(jQuery)
HTML:
Copy code
ttp://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
http://www.w3.org/1999/xhtml">
"type="text/javascript" charset="utf-8">
<script><br /> $(function(){<br /> $('#tag').activiTag({});<br /> });<br /> </script>

实现方法:1、用“$("img").delay(毫秒数).fadeOut()”语句,delay()设置延迟秒数;2、用“setTimeout(function(){ $("img").hide(); },毫秒值);”语句,通过定时器来延迟。

修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

区别:1、axios是一个异步请求框架,用于封装底层的XMLHttpRequest,而jquery是一个JavaScript库,只是顺便封装了dom操作;2、axios是基于承诺对象的,可以用承诺对象中的方法,而jquery不基于承诺对象。

增加元素的方法:1、用append(),语法“$("body").append(新元素)”,可向body内部的末尾处增加元素;2、用prepend(),语法“$("body").prepend(新元素)”,可向body内部的开始处增加元素。

删除方法:1、用empty(),语法“$("div").empty();”,可删除所有子节点和内容;2、用children()和remove(),语法“$("div").children().remove();”,只删除子元素,不删除内容。

在jquery中,apply()方法用于改变this指向,使用另一个对象替换当前对象,是应用某一对象的一个方法,语法为“apply(thisobj,[argarray])”;参数argarray表示的是以数组的形式进行传递。

去掉方法:1、用“$(selector).removeAttr("readonly")”语句删除readonly属性;2、用“$(selector).attr("readonly",false)”将readonly属性的值设置为false。

on()方法有4个参数:1、第一个参数不可省略,规定要从被选元素添加的一个或多个事件或命名空间;2、第二个参数可省略,规定元素的事件处理程序;3、第三个参数可省略,规定传递到函数的额外数据;4、第四个参数可省略,规定当事件发生时运行的函数。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 English version
Recommended: Win version, supports code prompts!
