我有以下代碼例如:的Html透明文本輸入框
<style>
{ margin: 0; padding: 0; }
html, body {
\t margin: 0;
\t height: 100%;
\t width: 100%;
overflow:hidden;
\t background-size: 100% 100%;
background-repeat: no-repeat;
}
.input {
\t margin: 0;
\t padding-top:0px;
\t padding-bottom:0px;
\t padding-left:0px;
\t padding-right:0px;
\t opacity: 0.6;
\t filter: alpha(opacity=60); /* For IE8 and earlier */
\t background-color:#000;
border:none;
outline:none;
}
#input {
opacity: 0.6;
\t filter: alpha(opacity=60); /* For IE8 and earlier */
border:none;
outline:none;
}
.bgDiv {
\t margin: 0;
\t padding-top:0px;
\t padding-bottom:0px;
\t padding-left:0px;
\t padding-right:0px;
\t z-index:1;
}
.mainDiv {
\t margin: 0;
\t padding-top:0px;
\t padding-bottom:0px;
\t padding-left:0px;
\t padding-right:0px;
\t z-index:3;
}
</style>
<div id="bgDiv" name="bgDiv" class="bgDiv">
<img src="http://wallpapercave.com/wp/2u5OrmL.png" style="background-image: url('http://wallpapercave.com/wp/2u5OrmL.png'); -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;">
</div>
<div id="mainDiv" name="mainDiv" class="mainDiv">
<form id="iform" name="iform" action="index.php" method="post">
<input type="text" maxleth="18" align="center" id="input" name="input" class="input" placeholder="placeholder" style="border:0;outline:none;width:100%;height:100%;font-size:98px;text-align: center;" autocomplete="off" autofocus>
</form>
</div>
我試圖使文字輸入具有透明背景,所以用戶可以看到下面的背景圖像的頁面。同時,還可以看到框中鍵入的文字。
input[type=text] {
background: transparent;
border: none;
} 背景色:RGBA(0,0,0,0);
這些似乎沒有工作或有任何影響。請幫忙。
更新我的屁股到我在頁面上使用的實際代碼,有點兒。我一定在做錯事......另外,我知道它有點像.input和#include在CSS中是多餘的,我只是把它留給我顯示,我嘗試了兩種方式。 – MBF
背景圖像必須來自標籤,而不是實際的背景。 (稍後用於地圖區域)。另外,這使得輸入框的文字也是透明的。 – MBF
生病了,我認爲它現在可以工作!謝謝! – MBF