var _x = window.screen.width;
var _y = math.max(math.max(document.documentelement.offsetheight,document.documentelement.scrollheight) ,math.max(document.body.offsetheight,document.body.scrollheight));
//建立層 底層
var _floatdiv= document.createelement('div');
_floatdiv.id="_floatdiv";
_floatdiv.style.position="absolute";
_floatdiv.style.zindex="2000";
_floatdiv.style.top="0px";
_floatdiv.style.left="0px";
_floatdiv.style.width="100%";
_floatdiv.style.height=_y;
_floatdiv.style.background="#000";
_floatdiv.style.filter = "alpha(style=0,opacity=50,finishopacity=0)";
//根據url獲取原的畫素大小
var objimg = new image();
objimg.src = img.src;
var h = objimg.height;
var w = objimg.width;
//建立 層
var dom=document.documentelement;
var ileft=(dom.offsetwidth-w)/2 + 0;
var itop=(dom.offsetheight-h)/2 + dom.scrolltop;
var _imgdiv = document.createelement('div');
_imgdiv.style.position="absolute";
_imgdiv.style.zindex="2001";
_imgdiv.style.left=(ileft-8)+"px"; //減去滾動條的寬度
_imgdiv.style.top=itop+"px";
_imgdiv.style.background="#fff";
_imgdiv.style.padding="0";
_imgdiv.style.filter = "alpha(style=0,opacity=100,finishopacity=0)";
//建立
var _img = document.createelement('img');
_img.src = imgurl;
建立領域層
建立解決方案管理器 開啟vs 建立新專案 選擇asp.net core web 應用程式 選擇web api。專案名稱依據個人習慣,命名為nm.reservation.api。建立domain專案 在建立好的解決方案管理其中選擇新增,類庫.net core。命名為nm.reservation.dom...
動態選單 動態建立選單
動態建立選單 windows應用程式的介面,不僅僅是乙個簡單的窗體,每個窗體中都包含具體實現功 能的控制項,包括能夠顯示基本資訊的label控制項,能夠在其中輸入內容的文字框控制項,能 夠設定選項的選擇按鈕控制項等。net提供了很多使用簡單 功能強大的控制項,幫助程式設 計者快速有效地開發應用軟體。...
動態建立icon
前一陣找了好久也沒有找到有關動態建立icon的文章,後來偶然發現一片寫的,確實c 的。不能新增到vc6的mfc工程裡裡去。哎。還是自食其力,看文件寫個了。這裡是建立乙個帶字串的hicon,想一下某些日曆軟體在系統托盤上的日期顯示。看了這個,相信看客可以舉一反三了。hicon createstrico...