ext右下角浮动窗口
第一种
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <link rel="stylesheet" type="text/css" href="Ext/resources/css/ext-all.css"> <script type="text/javascript" src="Ext/ext-base.js"></script> <script type="text/javascript" src="Ext/ext-all.js"></script> <script type="text/javascript" src="Ext/ext-lang-zh_CN.js"></script> <title>无标题文档</title> </head> <style type="text/css"> #test { width:250px; height:0px; position:absolute; right:0; bottom:0; border:1px solid #999999; margin:0; padding:1px; overflow:hidden; background:#FFFFFF } </style> <script type="text/javascript"> Ext.onReady(function (){ var divObj = Ext.get("test"); divObj.setBounds(divObj.getX(),divObj.getY()-120,divObj.getWidth()+0,divObj.getHeight()+120,{duration:1.0}); }); </script> </head> <body> <div id = "test"> test </div> </body> </html>
第二种
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <link rel="stylesheet" type="text/css" href="Ext/resources/css/ext-all.css"> <script type="text/javascript" src="Ext/ext-base.js"></script> <script type="text/javascript" src="Ext/ext-all.js"></script> <script type="text/javascript" src="Ext/ext-lang-zh_CN.js"></script> <title>无标题文档</title> </head> <script type="text/javascript"> Ext.namespace("Ext.ux"); Ext.ux.ToastWindowMgr = { positions: [] }; Ext.ux.ToastWindow = Ext.extend(Ext.Window, { initComponent: function(){ Ext.apply(this, { iconCls: this.iconCls || 'information', width: 250, height: 150, autoScroll: true, autoDestroy: true, plain: false, shadow:false }); this.task = new Ext.util.DelayedTask(this.hide, this); Ext.ux.ToastWindow.superclass.initComponent.call(this); }, setMessage: function(msg){ this.body.update(msg); }, setTitle: function(title, iconCls){ Ext.ux.ToastWindow.superclass.setTitle.call(this, title, iconCls||this.iconCls); }, onRender:function(ct, position) { Ext.ux.ToastWindow.superclass.onRender.call(this, ct, position); }, onDestroy: function(){ Ext.ux.ToastWindowMgr.positions.remove(this.pos); Ext.ux.ToastWindow.superclass.onDestroy.call(this); }, afterShow: function(){ Ext.ux.ToastWindow.superclass.afterShow.call(this); this.on('move', function(){ Ext.ux.ToastWindowMgr.positions.remove(this.pos); this.task.cancel();} , this); this.task.delay(4000); }, animShow: function(){ this.pos = 0; while(Ext.ux.ToastWindowMgr.positions.indexOf(this.pos)>-1) this.pos++; Ext.ux.ToastWindowMgr.positions.push(this.pos); this.setSize(250,150); this.el.alignTo(document, "br-br", [ -20, -20-((this.getSize().height+10)*this.pos) ]); this.el.slideIn('b', { duration: 2, callback: this.afterShow, scope: this }); }, animHide: function(){ Ext.ux.ToastWindowMgr.positions.remove(this.pos); this.el.ghost("b", { duration: 2, remove: true, scope: this, callback: this.destroy }); } }); Ext.onReady(function(){ new Ext.ux.ToastWindow({ title: '提示窗口', html: '测试信息', iconCls: 'error' }).show(document); }) </script> </head> <body> <div id = "test"> test </div> </body> </html>
相关推荐
InJavaWeTrust 2020-05-15
Chydar 2012-09-20
natejeams 2020-01-15
zcpHappy 2014-01-11
pythonclass 2019-11-07
JF0 2019-11-03
ElementW 2015-02-15
干货集合 2014-05-14
kaiya0 2012-06-13
cscscssjsp 2012-03-05
drinow 2019-07-12
coderMozart 2019-06-30
t0ckh 2012-11-11
中等偏下 2017-02-22
nicepainkiller 2016-07-26
xiaoren 2016-02-10
云帆大数据 2016-01-11