HTML是網頁設計的基礎,其中廣告彈窗是實現推銷產品的常用方式。下面是HTML廣告彈窗代碼大全。
//1.基本彈窗代碼 function popup() { window.open("http://example.com","popup","width=400,height=400"); } //2.在頁面中間彈出 function popup() { var w = 400; var h = 400; var left = (screen.width/2)-(w/2); var top = (screen.height/2)-(h/2); window.open("http://example.com","popup","width="+w+",height="+h+",top="+top+",left="+left); } //3.彈窗默認為半透明狀態 function popup() { var w = 400; var h = 400; var left = (screen.width/2)-(w/2); var top = (screen.height/2)-(h/2); var popUp = window.open("http://example.com","popup","width="+w+",height="+h+",top="+top+",left="+left); popUp.blur(); window.focus(); } //4.簡單的HTML彈窗//5.借助jQuery實現彈窗
以上是五種實現彈窗的HTML代碼,不同的情況需要使用不同的代碼。在實現過程中可根據需要進行調整。
上一篇css3下載字體很大
下一篇css3什么屬性