Jump to content
  • 0

Button


ghrd
 Share

Question

14 answers to this question

Recommended Posts

  • 0

Привет, как реализовать такую кнопку? Интересует находящийся справа элемент с указателем. button1.png

Показывай, что уже читал на эту тему и как пробовал.

читал по запросу баттон.

http://htmlbook.ru/html/button

http://htmlbook.ru/blog/delaem-stilnye-knopki

Привет, как реализовать такую кнопку? Интересует находящийся справа элемент с указателем. button1.png

Показывай, что уже читал на эту тему и как пробовал.

никак не пробовал, потому что нигде не нашел. я и не знаю по какому запросу искать.

в каскаде моя кнопка на данный момент выглядит так:


button {

box-shadow: inset 0px 1px 0px 0px #f7f7f7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
background: -moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
background-color: #eee;
font-size: 15px;
font-family: MyriadPro;
border-radius: 2px;
border: 1px solid #cecece;
display: inline-block;
}

button:hover {
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
background: -moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
background-color: #dfdfdf;
}

button:active {
position: relative;
top: 1px;
}

Edited by ghrd
Link to comment
Share on other sites

  • 0

Вам нужна именно кнопка такого вида?

или всё-таки выпадающий список?

Верно, выпадающий список, с такой вот кнопки.

тогда ищите на тему "стилизация select"

Вы не правильно меня поняли.

Повторяю первый пост: "как реализовать такую кнопку? Интересует находящийся справа элемент с указателем".

Меня не интересует как сделать выпадающий список, меня интересует стиль кнопки.

Вы не правильно меня поняли.

Link to comment
Share on other sites

  • 0

1) нарисовать в фотошопе и положить на фон (поисковый запрос "самоучитель фотошоп")

2) Создать прямоугольник

а)закруглить углы с помощью CSS,

б)градиент с помощью CSS

в)треугольник сделан либо с помощью CSS (поисковый запрос "рисование фигур с помощью CSS"), либо картинка опять же(поисковый запрос "самоучитель фотошоп"), либо символ шрифта ?.

Edited by wwt
Link to comment
Share on other sites

  • 0

так устроит?

не загружается

странно

ну там вот такой код


<button class='btn'>KNOPKA</button>


.btn
{
margin:10px;
border:none;
width:305px;
height:38px;
background:url(http://parkov.me/doit/button1.png);
}

Нет. если бы можно было картинку просто всунуть я бы не спрашивал тут. вы мой верхний пост прочитайте как реализована моя кнопка, и что мне нужно дополнить.

1) нарисовать в фотошопе и положить на фон (поисковый запрос "самоучитель фотошоп")

2) Создать прямоугольник

а)закруглить углы с помощью CSS,

б)градиент с помощью CSS

в)треугольник сделан либо с помощью CSS (поисковый запрос "рисование фигур с помощью CSS"), либо картинка опять же(поисковый запрос "самоучитель фотошоп"), либо символ шрифта ?.

я реализовал так:

css

#content button span {
float: right;
padding-right: 5px;
}

html

<button class="drop">Выберите организацию <span><img src="img/button.png" alt=""></span></button>

Link to comment
Share on other sites

  • 0


button {

box-shadow: inset 0px 1px 0px 0px #f7f7f7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
background: -moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
background-color: #eee;
font-size: 15px;
font-family: MyriadPro;
border-radius: 2px;
border: 1px solid #cecece;
display: inline-block;
width:182px;
height:32px;
position:relative;
text-align:left;
padding-left:10px;
}
button:before {
position: absolute;
display: block;
content: "";
top: 0;
right: 0;
width: 29px;
height: 30px;
border-left: 1px solid #fff;
background: transparent;
}
button:after {
position: absolute;
display: block;
content: "?";
line-height: 32px;
font-size: 12px;
text-align: center;
top: 0;
right: 0;
width: 30px;
height: 30px;
border-left: 1px solid #cecece;
background: transparent;
}

button:hover {
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
background: -moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
background-color: #dfdfdf;
}

button:active {
position: relative;
top: 1px;
}

http://jsfiddle.net/sF9f7/

Edited by wwt
Link to comment
Share on other sites

  • 0


button {

box-shadow: inset 0px 1px 0px 0px #f7f7f7;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
background: -moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
background-color: #eee;
font-size: 15px;
font-family: MyriadPro;
border-radius: 2px;
border: 1px solid #cecece;
display: inline-block;
width:182px;
height:32px;
position:relative;
text-align:left;
padding-left:10px;
}
button:before {
position: absolute;
display: block;
content: "";
top: 0;
right: 0;
width: 29px;
height: 30px;
border-left: 1px solid #fff;
background: transparent;
}
button:after {
position: absolute;
display: block;
content: "?";
line-height: 32px;
font-size: 12px;
text-align: center;
top: 0;
right: 0;
width: 30px;
height: 30px;
border-left: 1px solid #cecece;
background: transparent;
}

button:hover {
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
background: -moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
background-color: #dfdfdf;
}

button:active {
position: relative;
top: 1px;
}

http://jsfiddle.net/sF9f7/

Спасибо!

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