Html透明文本输入框

时间:2017-01-01 21:01:04

标签: html input transparency transparent

我有以下代码示例:

<style>
{ margin: 0; padding: 0; }
html, body {
	margin: 0;
	height: 100%;
	width: 100%;
    overflow:hidden;
	background-size: 100% 100%;
    background-repeat: no-repeat;
}
.input {
	margin: 0;
	padding-top:0px;
	padding-bottom:0px;
	padding-left:0px;
	padding-right:0px;
	opacity: 0.6;
	filter: alpha(opacity=60); /* For IE8 and earlier */
	background-color:#000;
  border:none;
  outline:none;
}
#input {
  opacity: 0.6;
	filter: alpha(opacity=60); /* For IE8 and earlier */
  border:none;
  outline:none;
  }
.bgDiv {
	margin: 0;
	padding-top:0px;
	padding-bottom:0px;
	padding-left:0px;
	padding-right:0px;
	z-index:1;
}
.mainDiv {
	margin: 0;
	padding-top:0px;
	padding-bottom:0px;
	padding-left:0px;
	padding-right:0px;
	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);

这些似乎没有任何效果。请帮忙。

5 个答案:

答案 0 :(得分:2)

尝试:

  margin: 30px;
  background-color: #ffffff;
  border: 1px solid black;
  opacity: 0.6;
  filter: alpha(opacity=60); /* For IE8 and earlier */

这是一个fiddle,它给出了一个例子。

答案 1 :(得分:2)

尝试

            background-color: transparent;

     input {
        background-color: transparent;

    }
    .WRAPPER {
        background-color: #000;
        height: 575px;
        width: 975px;
        background-image: url("http://wallpapercave.com/wp/2u5OrmL.png");
        top: auto;
        margin: -8px;
    }
    body {
        
        background-color: #000;
        background-image: url("http://wallpapercave.com/wp/2u5OrmL.png");
    }
    #email {
        background-color:rgba(0, 0, 0, 0);
        color:white;
        border: none;
        outline:none;
        height:30px;
        transition:height 1s;
        -webkit-transition:height 1s;
    }
    #email:focus {
      
        height:50px;
        font-size:16px;
    }
<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>

答案 2 :(得分:1)

我认为这是你想要的东西:

body,html{
  margin: 0;
  padding: 0
}
.wrapper{
  background: url('http://wallpapercave.com/wp/2u5OrmL.png');
  height: 100vh;
  text-align: center
}
input{
  background: transparent;
  color: #FFF;
  top: 40vh;
  position: relative;
  border: 1px solid #FFF;
  display: inline-block;
}
<div class="wrapper">
  <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="width:90%;font-size:98px;text-align: center;" autocomplete="off" autofocus>
</form>
</div>

答案 3 :(得分:0)

如果以上任何代码对您不起作用,请尝试使用

<input type="text" name="name" style="background-color:transparent;" />

这对我有用。

答案 4 :(得分:0)

对于我正在工作的一个网站,我能够使用透明文本来将按钮调低到最初的位置。

<div style="display:inline-block;user-select: none;opacity: 0;border:0.1px solid ;border-radius:1px;padding:1px;background:linear-gradient(to bottom,,)">Transparent Text</div>

此div样式没有用户选择,并且不透明。当被查看时,对于我的网站无论如何都是完全不可见的。

我希望这会有所帮助!我知道我晚会很晚。