最近在用一個JQUERY UI Dialog的插件,感覺特別強大,但樣式設置比較麻煩,研究了倆天終於搞定了。
運行插件,需要的環境如下
<script src="../../JS/jquery-1.4.2.js" type="text/javascript"></script>
<script src="../JS/jquery.ui.js" type="text/javascript"></script>
<link href="CSS/themes/redmond/jquery.ui.all.css" rel="stylesheet" type="text/css" />
jquery.ui.all.css 為啟動樣式的CSS ,用firefox打開查看 ,浮層的title 如下,
<span id="ui-dialog-title-divShow" class="ui-dialog-title" unselectable="on" style="-moz-user-select: none;">百姓一站通提示</span>
其實就是一個span,那麼 根據這個class ui-dialog-title 我們去 官網的CSS目錄裡 找到jquery.ui.dialog.css 文件 查找classui-dialog-title 這個CSS樣式。
.ui-dialog .ui-dialog-title { font: 62.5% "Trebuchet MS" , sans-serif;font-weight:bold;float: left; margin: .1em 16px .1em 0; height:15px }
對這個css進行修改即可達到我們想要的浮層的頭樣式了。
header的背景設置:
.ui-widget-header { border: 1px solid #aaaaaa; background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; }
可以去掉背景圖片 設置為背景顏色
.ui-widget-header { border: 1px solid #aaaaaa; background-color:red; color: #222222; font-weight: bold; }
關於x與右下角的圖標設置:
圖標.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); }