时间:2021-05-26
本文实例讲述了js由下向上不断上升冒气泡效果的方法。分享给大家供大家参考。具体实现方法如下:
<html><head><title>JS实现气泡从水中急速上升效果</title><style type="text/css">body {cursor:crosshair;margin:0; padding:0;position:absolute; overflow:hidden;background:#FFF; left:0; top:0;width:100%; height:100%;}</style><script type="text/javascript">var object = new Array();nbfm = 60;var xm = 0;var ym = 9999;var nx = 0;var ny = 0;function movbulb(){ with (this) { if(ec < 20){ if(Math.abs(x0 - xm) < 100 && Math.abs(y0 - ym) < 100){ xx = (xm - x0) / 8; yy = (ym - y0) / 8; ec++; } } xx *= 0.99; yy *= 0.99; x0 = Math.round(x0 + Math.cos(y0 / 15) * p) + xx; y0+= yy - v; if(y0 < -h * 2 || x0 < -w * 2 || x0 > nx + w * 2){ y0 = ny + N + h * 2; x0 = nx/2-100 + Math.random() * 100; ec = 0; } obj.style.top = y0 - h; obj.style.left = x0 - w; }}function CObj(N,img,w,h){ this.obj = document.createElement("img"); this.obj.src = img.src; this.obj.style.position = "absolute"; this.obj.style.left = -1000; document.body.appendChild(this.obj); this.N = N; this.x0 = 0; this.y0 = -1000; this.v = 1 + Math.round((80 / h) * Math.random()); this.p = 1 + Math.round((w / 8) * Math.random()); this.xx = 0; this.yy = 0; this.ec = 0; this.w = w; this.h = h; this.movbulb = movbulb;}function resize(){ nx = document.body.offsetWidth; ny = document.body.offsetHeight;}onresize = resize;document.onmousemove = function(e){ if (window.event) e = window.event; xm = document.body.scrollLeft+(e.x || e.clientX); ym = document.body.scrollTop+(e.y || e.clientY);}function run(){ for(i in object)object[i].movbulb(); setTimeout(run, 16);}onload = function() { PIC = document.getElementById("bubbles").getElementsByTagName("img"); resize(); for(nbf=0;nbf<nbfm;nbf++){ sf = PIC[nbf%PIC.length]; object[nbf] = new CObj(nbf,sf,sf.width/2,sf.height/2); } run();}</script></head><body><div id="bubbles" style="visibility:hidden"><img src="http://bbs.blueidea.com/static/image/smiley/blueidea/smile.gif"><img src="http://bbs.blueidea.com/static/image/smiley/blueidea/biggrin.gif"><img src="http://bbs.blueidea.com/static/image/smiley/blueidea/eek.gif"><img src="http://bbs.blueidea.com/static/image/smiley/blueidea/rolleyes.gif"></div></body></html>希望本文所述对大家的javascript程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
微信小程序利用css实现遮罩效果实例详解实现效果图:如图所示,使用css实现小程序的遮罩效果,代码如下js文件代码://index.js//获取应用实例vara
本文实例讲述了js实现精美的图片跟随鼠标效果实现方法。分享给大家供大家参考。具体实现方法如下:精美js鼠标跟随代码A=document.getElementBy
本文实例讲述了Android气泡效果实现方法。分享给大家供大家参考,具体如下:最近在看以前在eoe上收藏的一些源代码,准备将这些代码加上一些自己的注释,然后贴出
本文实例讲述了js图片轮播效果实现原理,分享给大家供大家参考,具体内容如下InserttitleherevartimeID;varimage;varcurren
本文实例讲述了JS实现网页Div层Clone拖拽效果。分享给大家供大家参考。具体如下:这是一个层拖动,网页上的拖拽Clone效果实例,两个层可在鼠标的拖动下,任