DIV CSS 佈局教程網

頁面添加 mask 遮罩層
編輯:JQuery特效代碼     
var mask = function(){
$('<div>').css({
  position: 'fixed',
  left: 0,
  top: 0,
  width: '100%',
  height: '100%',
  zIndex: '90',
  backgroundColor: 'rgb(0, 0, 0)',
  opacity: 0.5
}).appendTo('body').attr('id', '_jsPop');
$('#_jsPop').click(function(){
  $(this).remove();
});
};
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved