ANTICHAT

ANTICHAT (https://forum.antichat.xyz/index.php)
-   Общие вопросы программирования (https://forum.antichat.xyz/forumdisplay.php?f=206)
-   -   Design | Как сделать такую кнопку? (https://forum.antichat.xyz/showthread.php?t=1442814)

ВЛАД ДИНОЗАВР 29.07.2022 00:14

https://forum.antichat.xyz/attachments/28100002/

при наведении есть эффект

https://forum.antichat.xyz/attachments/28100002/

Unprot

f0467642.xsph.ru

kjor32 29.07.2022 00:17

Спроси у лолендора

yung milonov 29.07.2022 00:25

там спиздить ведь можно, ты че

CSS:





Код:

button
{
background
:
#1AAB8A
;
color
:
#fff
;
border
:
none
;
position
:
relative
;
height
:
50px
;
font-size
:
1.6em
;
padding
:
0 2em
;
cursor
:
pointer
;
transition
:
800ms ease all
;
outline
:
none
;
border-radius
:
10px 0px 10px 0px
;
}
button:hover
{
background
:
#34495E
;
color
:
#1AAB8A
;
box-shadow
:
0 0 30px #101010
;
border-radius
:
0px
;
}
button:before,button:after
{
content
:
""
;
position
:
absolute
;
top
:
0
;
right
:
0
;
height
:
2px
;
width
:
0
;
background
:
#1AAB8A
;
transition
:
400ms ease all
;
}
button:after
{
right
:
inherit
;
top
:
inherit
;
left
:
0
;
bottom
:
0
;
}
button:hover:before,button:hover:after
{
width
:
100%
;
transition
:
800ms ease all
;
}



HTML:





Код:


Unprot



Время: 12:35