Jochem
Jochem
KPCKevin Powell - Community
Created by Dovah on 7/2/2024 in #front-end
How to make this number "1234567890" into "1,234,567,890"?
2 replies
KPCKevin Powell - Community
Created by Justine on 7/1/2024 in #front-end
whats the good practice for grid lay out
Clevermissfox is correct, I meant in different components, but at the same time even in the same component it's fine if that's what's required to make the layout work
5 replies
KPCKevin Powell - Community
Created by althepal78 on 7/1/2024 in #front-end
Trying to make this animation look smoother
very cool!
19 replies
KPCKevin Powell - Community
Created by althepal78 on 7/1/2024 in #front-end
Trying to make this animation look smoother
this one won't change the original animation at all, you just don't need to manually insert the intermediate steps. And yeah, both should still work on that one
19 replies
KPCKevin Powell - Community
Created by althepal78 on 7/1/2024 in #front-end
Trying to make this animation look smoother
this works too! though you'll have to double the duration
19 replies
KPCKevin Powell - Community
Created by althepal78 on 7/1/2024 in #front-end
Trying to make this animation look smoother
(or you could just do this)
@keyframes upanddown {
0% {
transform: rotateZ(-6deg);
}
100% {
transform: rotateZ(6deg);
}
}
@keyframes upanddown {
0% {
transform: rotateZ(-6deg);
}
100% {
transform: rotateZ(6deg);
}
}
19 replies
KPCKevin Powell - Community
Created by althepal78 on 7/1/2024 in #front-end
Trying to make this animation look smoother
also, it looks like you're just linearly animating from -6 to +6 degrees, you don't need a keyframed animation for that
19 replies
KPCKevin Powell - Community
Created by althepal78 on 7/1/2024 in #front-end
Trying to make this animation look smoother
animation: upanddown 1s infinite both;
19 replies
KPCKevin Powell - Community
Created by althepal78 on 7/1/2024 in #front-end
Trying to make this animation look smoother
try adding both in the animation definition
19 replies
KPCKevin Powell - Community
Created by Justine on 7/1/2024 in #front-end
whats the good practice for grid lay out
it's fine to nest grids
5 replies
KPCKevin Powell - Community
Created by ConFuzed on 6/30/2024 in #front-end
Help with FFmpeg
var really shouldn't be used anymore. If you need the hoisting, hoist it yourself so it's explicit
20 replies
KPCKevin Powell - Community
Created by Mango on 6/30/2024 in #front-end
What Are Some Good Websites Or Videos To Help You With HTML, CSS or JavaScript?
Requests for resources also go in #discussions
6 replies
KPCKevin Powell - Community
Created by Mango on 6/30/2024 in #front-end
What Are Some Good Websites Or Videos To Help You With HTML, CSS or JavaScript?
Also check out #resources
6 replies
KPCKevin Powell - Community
Created by Mango on 6/30/2024 in #front-end
What Are Some Good Websites Or Videos To Help You With HTML, CSS or JavaScript?
6 replies
KPCKevin Powell - Community
Created by ConFuzed on 6/30/2024 in #front-end
Help with FFmpeg
this is too complex of an issue to expect someone else to solve for you if I'm honest. Good luck with your code
20 replies
KPCKevin Powell - Community
Created by ConFuzed on 6/30/2024 in #front-end
Help with FFmpeg
if you can't understand the code ChatGPT is giving you, then it's not a good idea to use ChatGPT to try to learn
20 replies
KPCKevin Powell - Community
Created by ConFuzed on 6/30/2024 in #front-end
Help with FFmpeg
you're missing an import somewhere, I think you may not have fully followed the instructions for using the FFMpeg library.
20 replies
KPCKevin Powell - Community
Created by ConFuzed on 6/30/2024 in #front-end
Help with FFmpeg
the very minimum you can do is share the code in scripts.js by copy/pasting it into a message here. Start the message with ```js, then on the next line paste the script, then on a new line at the bottom add ```
20 replies
KPCKevin Powell - Community
Created by ConFuzed on 6/30/2024 in #front-end
Help with FFmpeg
there's instructions in #how-to-ask-good-questions on how you can share frontend code
20 replies
KPCKevin Powell - Community
Created by ConFuzed on 6/30/2024 in #front-end
Help with FFmpeg
you will need to add a lot more info, like the code you're using, what you've tried... give #how-to-ask-good-questions a look
20 replies