Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rifzkhy committed Aug 30, 2023
1 parent 2f95d7b commit 635b47d
Show file tree
Hide file tree
Showing 26 changed files with 356 additions and 271 deletions.
1 change: 0 additions & 1 deletion css/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

* {
font-family: "JetBrains Mono", monospace;
scroll-behavior: smooth;
}
.dm-sans {
font-family: "DM Sans", sans-serif;
Expand Down
13 changes: 11 additions & 2 deletions css/profile.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
top: 20px;
left: 18px;
max-width: 250px;
transform: translateZ(19px);
transform: translateZ(15px);
border-radius: 5px;
transition: 0.5s;
opacity: 0;
Expand Down Expand Up @@ -205,8 +205,10 @@

/* TODO: Project */
.project .card {
/* box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.8); */
transform-style: preserve-3d;
width: 18rem;
height: 29rem;
margin-left: -15%;
}

.project .card .project-pics {
Expand All @@ -226,3 +228,10 @@
width: 20rem;
box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
/* TODO: Project */
.project .card {
margin-left: none;
}
}
3 changes: 3 additions & 0 deletions css/text.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ mark {
.typewrite1 {
font-family: monospace;
font-size: 20px;
line-height: 1.2;
margin: 0 auto;
margin-left: -10px;
}

.typewrite1 h5 {
Expand Down
585 changes: 317 additions & 268 deletions index.html

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions script/global.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,28 @@ function moveAlldesign() {
}
});
}
function moveAllprogramming() {
var skillBars = document.querySelectorAll(".myBarprogramming");

skillBars.forEach(function (myBarprogramming) {
var width = 10;
var numericValue = parseFloat(myBarprogramming.getAttribute("data-percent"));
var i = 0;

if (i == 0) {
i = 1;
var id = setInterval(frame, 10);

function frame() {
if (width >= numericValue) {
clearInterval(id);
i = 0;
} else {
width++;
myBarprogramming.style.width = width + "%";
myBarprogramming.innerHTML = width + "%";
}
}
}
});
}
Binary file added src/carousel/11.webp
Binary file not shown.
Binary file added src/carousel/12.webp
Binary file not shown.
Binary file added src/carousel/13.webp
Binary file not shown.
Binary file added src/carousel/14.webp
Binary file not shown.
Binary file added src/carousel/15.webp
Binary file not shown.
Binary file added src/carousel/16.webp
Binary file not shown.
Binary file added src/carousel/17.webp
Binary file not shown.
Binary file added src/carousel/18.webp
Binary file not shown.
Binary file added src/carousel/19.webp
Binary file not shown.
Binary file added src/carousel/20.webp
Binary file not shown.
Binary file added src/carousel/21.webp
Binary file not shown.
Binary file added src/carousel/22.webp
Binary file not shown.
Binary file added src/carousel/23.webp
Binary file not shown.
Binary file added src/carousel/24.webp
Binary file not shown.
Binary file added src/carousel/25.webp
Binary file not shown.
Binary file added src/carousel/26.webp
Binary file not shown.
Binary file added src/carousel/27.webp
Binary file not shown.
Binary file added src/carousel/28.webp
Binary file not shown.
Binary file added src/carousel/final.webp
Binary file not shown.
Binary file added src/kukangdeveloper.webp
Binary file not shown.
Binary file added src/pixel-background.webp
Binary file not shown.

0 comments on commit 635b47d

Please sign in to comment.