Skip to content

Commit e6b815a

Browse files
feat: add transition
1 parent e3877a8 commit e6b815a

File tree

2 files changed

+43
-5
lines changed

2 files changed

+43
-5
lines changed

dist/output.css

+34
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,10 @@ video {
575575
width: 100vw;
576576
}
577577

578+
.transform {
579+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
580+
}
581+
578582
@keyframes fade {
579583
0% {
580584
opacity: 0;
@@ -691,6 +695,24 @@ video {
691695
color: rgb(255 255 255 / var(--tw-text-opacity));
692696
}
693697

698+
.transition {
699+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
700+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
701+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
702+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
703+
transition-duration: 150ms;
704+
}
705+
706+
.transition-transform {
707+
transition-property: transform;
708+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
709+
transition-duration: 150ms;
710+
}
711+
712+
.ease-in-out {
713+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
714+
}
715+
694716
.animate-once {
695717
animation-iteration-count: 1;
696718
}
@@ -703,11 +725,23 @@ html {
703725
font-size: 62.5%;
704726
}
705727

728+
.hover\:scale-105:hover {
729+
--tw-scale-x: 1.05;
730+
--tw-scale-y: 1.05;
731+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
732+
}
733+
706734
.hover\:text-white:hover {
707735
--tw-text-opacity: 1;
708736
color: rgb(255 255 255 / var(--tw-text-opacity));
709737
}
710738

739+
.active\:scale-100:active {
740+
--tw-scale-x: 1;
741+
--tw-scale-y: 1;
742+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
743+
}
744+
711745
@media (min-width: 431px) {
712746
.sm\:absolute {
713747
position: absolute;

index.html

+9-5
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@
1919
<ul
2020
class="text-[#636363] text-base sm:flex sm:gap-[2.4rem] justify-end hidden"
2121
>
22-
<li class="hover:text-white">
22+
<li class="hover:text-white transition">
2323
<a
2424
href="https://www.linkedin.com/in/mustafamengutay/"
2525
target="_blank"
2626
>Linkedin</a
2727
>
2828
</li>
29-
<li class="hover:text-white">
29+
<li class="hover:text-white transition">
3030
<a href="https://github.com/mustafamengutay" target="_blank"
3131
>Github</a
3232
>
3333
</li>
34-
<li class="hover:text-white">
34+
<li class="hover:text-white transition">
3535
<a href="https://dribbble.com/mustafamengutay" target="_blank"
3636
>Dribbble</a
3737
>
@@ -61,7 +61,11 @@
6161
principles.</span
6262
><br />
6363
Currently working on
64-
<span class="text-white">Depremzede</span>
64+
<span class="text-white"
65+
><a href="https://github.com/mustafamengutay/depremzede"
66+
>Depremzede</a
67+
></span
68+
>
6569
⚡️
6670
</p>
6771
</div>
@@ -84,7 +88,7 @@
8488
<a
8589
href="mailto:[email protected]"
8690
class="bg-white text-black w-[35rem] sm:w-[15.3rem] h-[6.5rem] sm:h-[4rem] sm:py-[1.1rem] sm:px-[4.5rem] rounded-full
87-
flex justify-center items-center whitespace-nowrap text-[2.4rem] sm:text-base"
91+
flex justify-center items-center whitespace-nowrap text-[2.4rem] sm:text-base transition-transform transform duration-250 ease-in-out hover:scale-105 active:scale-100"
8892
>Say Hello</a
8993
>
9094
</div>

0 commit comments

Comments
 (0)