Helgi
Helgi
KPCKevin Powell - Community
Created by Helgi on 2/6/2025 in #front-end
js question
thanks guys 😄
10 replies
KPCKevin Powell - Community
Created by Helgi on 2/6/2025 in #front-end
js question
hell.. i didnt think about that also
10 replies
KPCKevin Powell - Community
Created by Helgi on 2/6/2025 in #front-end
js question
No description
10 replies
KPCKevin Powell - Community
Created by Helgi on 2/6/2025 in #front-end
js question
And another problem: when I write a lot of text, like rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr, it doesn't wrap. But if I add even a single space, everything works fine. What's the problem?
10 replies
KPCKevin Powell - Community
Created by Helgi on 2/4/2025 in #front-end
js question
yeah i was playing with some values and i didnt save file
7 replies
KPCKevin Powell - Community
Created by Helgi on 2/4/2025 in #front-end
js question
😭
7 replies
KPCKevin Powell - Community
Created by Helgi on 2/4/2025 in #front-end
js question
oh fuck bro no way that was so easy
7 replies
KPCKevin Powell - Community
Created by Helgi on 2/2/2025 in #front-end
css questions
thanks guys
8 replies
KPCKevin Powell - Community
Created by Helgi on 2/2/2025 in #front-end
need help to implement it
thankts for the tips ! appreciate it
9 replies
KPCKevin Powell - Community
Created by Helgi on 2/2/2025 in #front-end
need help to implement it
What if I just apply this to the entire body? body { background: linear-gradient(to bottom, rgb(254, 250, 250) 25%, white 10%); height: 100vh; } Of course, I'll need to adjust it with media queries when resizing the screen, but... I don't know, this should work too, right? It even looks better this way.
9 replies
KPCKevin Powell - Community
Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
btw i implemented this thanks for tips divs.forEach((div, index) => { div.setAttribute("data-index", index); }); next.addEventListener("click", function () { divs[currentIndex].classList.remove("active"); currentIndex = (currentIndex + 1) % divs.length; divs[currentIndex].classList.add("active"); }); prev.addEventListener("click", function () { divs[currentIndex].classList.remove("active"); currentIndex = (currentIndex - 1 + divs.length) % divs.length; divs[currentIndex].classList.add("active"); });
54 replies
KPCKevin Powell - Community
Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
i mean like i used them before in my div-img https://codepen.io/etrbbr/pen/raBRbQM and i removed them completely and put inside main. but now i cant position them. but if i put them in first div, when i will hide first div, they will disappear also
54 replies
KPCKevin Powell - Community
Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
yeah.. but wait, if i am not using my buttons inside my john and tanya divs.. so i actually need to use them inside or?
54 replies
KPCKevin Powell - Community
Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
i have a question. how do i position buttons relative to my div-img, if i dont use them in .tanya and .john div?
54 replies
KPCKevin Powell - Community
Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
oh thats actually jquery?
54 replies
KPCKevin Powell - Community
Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
ahhhh
54 replies
KPCKevin Powell - Community
Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
so by default i have 1 slide as active, and then a switch it every time i press button?
54 replies
KPCKevin Powell - Community
Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
but how i handle them when i choose them all. do i still give them class like .john . bla . blabla ? because i imagined i have like 5 slides. i cant use same function idea.
54 replies
KPCKevin Powell - Community
Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
its impossible
54 replies
KPCKevin Powell - Community
Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
because when i will have 10 slides
54 replies