1

こんにちは、添付の画像にある背景を持つ入力送信ボタンのスタイルを設定したいです。背景画像が提供されましたが、送信ボタンに実装する方法がわからないので、その画像を使用する代わりに、cssボタンのスタイルを設定する 3 つのカラー グラデーション プロパティがありますが、目的のカラー出力が得られません。 ここに画像の説明を入力

ここまでのCSSコード。

.button {
  -moz-border-radius: 18px;
  -moz-box-shadow: #fffff 0px 0px 11px;
  -webkit-border-radius: 18px;
  -webkit-box-shadow: #6E7849 0 0 10px;
  background-color: #fefefefe;
  background-image: -moz-linear-gradient(24deg, #d8d8d8, #fefefefe);
  background-image: -ms-linear-gradient(24deg, #d8d8d8, #fefefefe);
  background-image: -o-linear-gradient(24deg, #d8d8d8, #fefefefe);
  background-image: -webkit-linear-gradient(24deg, #d8d8d8, #fefefefe);
  background-image: linear-gradient(24deg, #d8d8d8, #fefefefe);
  border-radius: 18px;
  border: 1px solid #888888;
  box-shadow: #fffff 0px 0px 11px;
  color: #000000;
  display: inline-block;
  font-size: 3em;
  margin: auto;
  padding: 4px;
  text-decoration: none;
}
4

3 に答える 3

1

画像を使用します。グラデーションを画像に完全に一致させることは、不必要な苦痛です。

.button {
   display:block;
   width:50px; //use actual image width
   height:50px; // use actual image height
   background:url(../img/button.png); //image file path
}

.button:hover {
 background:url(../img/button_hover.png); 
 }
于 2012-12-07T08:19:38.550 に答える
0

最後に、引き戸のテクニックを使用してこのボタンを作成する方法を見つけましたが、無効な状態でスタイルを設定することはまだ危険です。このリンクは私を大いに助けましたhttp://www.springload.co.nz/love-the-web/dynamic-submit-buttons

CSS

div.submit_button { 
   background: transparent url('common/images/bg-submit2.png') no-repeat 0 0; 
   display: block; 
   float: left; 
   height: 27px; /* total height of the button */ 
   padding-left: 15px; /* end width */ 
} 

span.submit_button_end { 
   background: #fff url('common/images/bg-submit2.png') no-repeat 100% 0; /*  used a sprite image */ 
   display: block; 
   float: left; 
   font-weight: normal; 
   height: 27px; /* total height of the button */ 
} 

input.submit_input { 
   font-size: 13px; 
   font-weight:bold;
   background: none; 
   border: none; 
   padding: 0 0 2px 15px; /* end width */ 
   color: #1b1d60; 
   cursor: pointer; 
   position: relative; 
   height: 25px; 
   line-height: 25px; 
   left: -15px;  
   margin-right: -15px; 
   padding-right: 15px; 
} 

input.submit_input:hover {color: #fff;} 

div.submit_button:hover {background-position: 0 100%;} 

div.submit_button:hover span.submit_button_end {background-position: 100% 100%;} 

HTML

 <div class='submit_button'> 
   <span class='submit_button_end'> 
     <input class='submit_input' type='submit'  value='Submit button' tabindex='#' /> 
   </span> 
</div>
于 2012-12-07T09:33:56.807 に答える