123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- function removeDrawWin(){
- $("#typhoon_aler").remove();
- $("#gis_mask").remove();
- };
- /**
- * 关闭模拟历史台风窗口
- */
- function removeHistoryTyphoonWin(){
- $("#history_typhoon_aler").remove();
- };
- /**
- * 最小化历史模拟台风窗口
- */
- function historyTyphoonMin(){
- // $("#history_typhoon_aler").height(30);
- $("#history_typhoon_aler").animate({
- height: "30px",
- }, 1000 );
- };
- /**
- * 还原历史模拟台风窗口
- */
- function historyTyphoonRes(){
- // $("#history_typhoon_aler").height(30);
- $("#history_typhoon_aler").animate({
- height: "330px",
- }, 1000 );
- };
- AlertTyphoonIframe = function(){
- var _this = this ;
- /**
- * 弹出信息框
- * @param w:弹框宽度px
- * @param h:弹框高度px
- * @param b:距离底部距离px
- * @param r:距离右侧距离px
- * @param src:页面地址
- */
- this.createWin = function(w,h,b,r,src){
- var iframe = document.createElement("iframe");
- iframe.src = src;
- iframe.style.width = w+"px";
- iframe.style.height = h+"px";
- iframe.style.position = "fixed";
- iframe.style.bottom = b+"px";
- iframe.style.right = r+"px";
- iframe.style.zIndex = 9999;
- iframe.id = "typhoon_aler";
- iframe.scrolling = "no";
- iframe.style.border="none";
- iframe.frameBorder = 0;
- $("body").append(iframe);
- };
-
- /**
- * 弹出信息框
- * @param w:弹框宽度px
- * @param h:弹框高度px
- * @param b:距离底部距离px
- * @param r:距离右侧距离px
- * @param src:页面地址
- */
- this.createCharWin = function(w,h,b,r,src,id){
- var iframe = document.createElement("iframe");
- iframe.src = src;
- iframe.style.width = w+"px";
- iframe.style.height = h+"px";
- iframe.style.position = "fixed";
- iframe.style.bottom = b+"px";
- iframe.style.right = r+"px";
- iframe.style.zIndex = 9999;
- iframe.id = id;
- iframe.scrolling = "no";
- iframe.style.border="none";
- iframe.frameBorder = 0;
- $("body").append(iframe);
- };
-
- /**
- * 弹出历史台风信息框
- * @param w:弹框宽度px
- * @param h:弹框高度px
- * @param b:距离底部距离px
- * @param r:距离右侧距离px
- * @param src:页面地址
- */
- this.createTyphWin = function(w,h,b,l,src){
- var iframe = document.createElement("iframe");
- iframe.src = src;
- iframe.style.width = w+"px";
- iframe.style.height = h+"px";
- iframe.style.position = "fixed";
- iframe.style.bottom = b+"px";
- iframe.style.left = l+"px";
- iframe.style.zIndex = 9999;
- iframe.id = "history_typhoon_aler";
- iframe.scrolling = "no";
- iframe.style.border="none";
- iframe.frameBorder = 0;
- $("body").append(iframe);
- };
- };
|