Ответ 1
Привет, я сделал кнопку через анимацию CSS3, пожалуйста, посмотрите, я надеюсь, что она близка к вашему вопросу: -
HTML
<input type="submit" value="submit" class="button" />
CSS
.button {
width:100px;
height:20px;
background:red;
animation:myfirst 5s;
-moz-animation:myfirst 5s infinite; /* Firefox */
-webkit-animation:myfirst 5s infinite; /* Safari and Chrome */
}
@-moz-keyframes myfirst /* Firefox */ {
0% {background:red;}
50% {background:yellow;}
100% {background:red;}
}
@-webkit-keyframes myfirst /* Safari and Chrome */ {
0% {background:red;}
50% {background:yellow;}
100% {background:red;}
}
см. демонстрацию: - http://jsbin.com/osohak/7/edit
Подробнее о CSS3 Переходы и анимация http://css3.bradshawenterprises.com/cfimg/