問題1:如何褪色的文字和淡出的文本,而不是僅僅顯示在文本框中它的淡入/淡出文字文本框使用JQuery和CSS修復按鈕
問題#2 [求助]:我想在按鈕圖標和文本之間留出一些空間,但它不起作用。按鈕的 示例:
UPDATE: padding-left: 30px;
固定的空間的問題。
HTML:
<input type="button" id="sv" value=" Score Viewer"></input>
<input type="button" id="pv" value=" Print Viewer"></input>
<input type="button" id="ev" value=" Exam Viewer"></input>
<br>
<input type=text id="tvinfo" value="" readonly size=50 />
JQuery的:
$(function() {
$('#sv').hover(
function() {
$('#tvinfo').val("View scores of exams already taken");
},
function() {
$('#tvinfo').val("");
}
);
$('#pv').hover(
function() {
$('#tvinfo').val("View who printed the certificate");
},
function() {
$('#tvinfo').val("");
}
);
$('#ev').hover(
function() {
$('#tvinfo').val("View who already took the exam");
},
function() {
$('#tvinfo').val("");
}
);
});
CSS:
#sv {
background: #ccc url(view.png) no-repeat top left;
height: 53px;
width: 186;
cursor: pointer;
}
#pv {
background: #ccc url(print.png) no-repeat top left;
height: 53px;
width: 186;
cursor: pointer;
}
#ev {
background: #ccc url(taken.png) no-repeat top left;
height: 53px;
width: 186;
cursor: pointer;
}
他需要填充,我相信。 – DontVoteMeDown
'padding-left:30px;'修復了問題 – Si8