Jump to content
  • 0

Смена изображения при наведении на кнопку формы <input>


chillout
 Share

Question

9 answers to this question

Recommended Posts

  • 0

Как это делать с тэгом <a> я знаю, а вот с input встрял.

Как вариант — по наведению делать кнопку полностью прозрачной (opacity:0), чтобы через нее просвечивала фоновая подложка с нужным рисунком.

спасибо, попробую.

Link to comment
Share on other sites

  • 0

>Как это делать с тэгом <a> я знаю, а вот с input встрял.

Точно так же?


<style type="text/css">
input {
width: 100px;
height: 30px;
background: url('input.png') no-repeat;
border: none;
}
input:hover {
background: url('input_hover.png') no-repeat;
}
</style>
<form>
<input name="search" type="button" value="" />
</form>

Link to comment
Share on other sites

  • 0

Как вариант — по наведению делать кнопку полностью прозрачной (opacity:0), чтобы через нее просвечивала фоновая подложка с нужным рисунком.

Получилось то что нужно, но пришлось задать абсолютное позиционирование и z-index. Может есть какой-то ещё способ?

Не вводите.

я не программист, мне лишь нужно сделать формы, но разве value="" не обязателен?

Link to comment
Share on other sites

  • 0
пришлось задать абсолютное позиционирование и z-index. Может есть какой-то ещё способ?

Просто обернуть кнопку в <span> с нужной фоновой картинкой оказалось недостаточно?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy