jQuery Simple Dialog
jQuery Simple Dialog 是一個用來實(shí)現(xiàn)彈出很簡單的模態(tài)對話框的 jQuery 插件。
示例代碼:
$(document).ready(function () {
$('.simpledialog').simpleDialog({
opacity: 0.3,
duration: 500,
title: 'Simple Dialog',
open: function (event) {
console.log('open!');
},
close: function (event, target) {
console.log('close!');
}
});
});
評論
圖片
表情
