Тёмный
codemmit
codemmit
codemmit
Подписаться
Codemmit (previously named as CodeXpool) is a channel for learning Full-Stack Web Development mostly for Web Designs and UI Development using HTML CSS, JavaScript and also using React.js and Vue.js.
Thanks For Visiting.
HIT SUBSCRIBE For More Such Coding Stuff.
Комментарии
@adrigomroc
@adrigomroc 2 месяца назад
It is possible to use in Vue ??
@alfredpeter2404
@alfredpeter2404 5 месяцев назад
Has anyone managed to deploy this on gh-pages?
@kbarriosdev
@kbarriosdev 27 дней назад
Did you happen to figure it out or found an alternative?
@NamineStars
@NamineStars 5 месяцев назад
Did this actually work for anyone
@rehman-nry
@rehman-nry 7 месяцев назад
Thankuh
@son2isaki
@son2isaki 7 месяцев назад
it is a very bad habit to modify styles without using css. yout should toggle a css class instead
@user-dk3qc7kj7i
@user-dk3qc7kj7i 7 месяцев назад
Thank you! Finally found what I need.😊
@user-kr8uu9so1p
@user-kr8uu9so1p 8 месяцев назад
Где взять исходный код?
@lyubon9492
@lyubon9492 8 месяцев назад
I love something that is simple and at the same time fits perfect. Thank you!
@ahmedamir7
@ahmedamir7 8 месяцев назад
I had an issue When in development it works fine but after I build the project and deploy ut the sphere doesn't appear on the page
@minTwin
@minTwin 9 месяцев назад
Is there a way to optimize the radius for mobile view? The text stretches off screen when viewing in mobile. Look good in desktop view.
@codemmit07
@codemmit07 9 месяцев назад
Hi, you can make it responsive by using the below code for hook. useEffect(() => { const container = '.tagcloud'; let radii; const texts = [ 'HTML', 'CSS', 'SASS', 'JavaScript', 'React', 'Vue', 'Nuxt', 'NodeJS', 'Shopify', 'Jquery', 'ES6', 'GIT', 'GITHUB', ]; function radiusValue() { if (window.screen.width <= 778) { radii = 150; } else { radii = 290; } return radii; } const options = { radius: radiusValue(), maxSpeed: 'normal', initSpeed: 'normal', keep: true, }; TagCloud(container, texts, options); }, []);
@ankurgamingon4480
@ankurgamingon4480 10 месяцев назад
😂
@andrewp5171
@andrewp5171 10 месяцев назад
Hell of a tutorial
@slz_sphinxz
@slz_sphinxz Год назад
Nice and Simple Thank you!
@duydungle3320
@duydungle3320 Год назад
can I get the value when I click on 1 cloud?
@desk6173
@desk6173 Год назад
How could I do to set images?
@OlasubomiK
@OlasubomiK Год назад
Thanks!
@RahulGupta-pz7gf
@RahulGupta-pz7gf Год назад
Very Good Bro Keep Helping bro
@diusepausm
@diusepausm Год назад
can i make it each text to a link? if yes how
@korean_bagel
@korean_bagel Год назад
Having an issue with it deploying to gh-pages. Works great locally.
@alfredpeter2404
@alfredpeter2404 5 месяцев назад
Did you ever solve it? I just encountered the same issue
@TheMatter-xd1ts
@TheMatter-xd1ts Год назад
what if mins is an href what would i do?
@lean9875
@lean9875 Год назад
OMG, how did you find this library?
@ohaganelectric9822
@ohaganelectric9822 Год назад
Can you integrate this into a RU-vid video? We use CapCut to make our videos. Thanks!
@enisbu
@enisbu Год назад
You literally made my day, I've been searching something like this for a long time! :)
@precupeduard7105
@precupeduard7105 Год назад
Hello @CodeXpool, please can you explain how can it be fixed after deploy? I use 'Netlify' and after deploy, the 3D TextSphere is not visible.
@codemmit07
@codemmit07 Год назад
If you are facing problem after deployment, try using below code for hook : useEffect(() => { const container = '.tagcloud'; const texts = [ 'HTML', 'CSS', 'SASS', 'JavaScript', 'React', 'Vue', 'Nuxt', 'NodeJS', 'Shopify', 'Jquery', 'ES6', 'GIT', 'GITHUB', ]; const options = { radius: 300 , maxSpeed: 'normal', initSpeed: 'normal', keep: true, }; TagCloud(container, texts, options); }, []);
@alexpapas5535
@alexpapas5535 Год назад
how can i make the whole div sphere to be responsive on the resize in different viewports????
@codemmit07
@codemmit07 Год назад
You can use the below source code for adding responsiveness (only you need to Call a function and set sphere radius depending on screen width). <script> const Texts = [ "HTML", "CSS", "JAVASCRIPT", "SWIFT", "MONGOOSE", "REACT", "PYTHON", "SASS", "DJANGO", "NODEJS", "MONGODB", "EXPRESS", "MYSQL", "JQUERY", "JAVA" ]; function radiusValue() { if (window.screen.width <= 778) { radii = 150; } else { radii = 290; } return radii; } var tagCloud = TagCloud(".Sphere", Texts, { // Sphere radius in px radius: radiusValue(), // animation speed // slow, normal, fast maxSpeed: "normal", initSpeed: "fast", // Rolling direction [0 (top) , 90 (left), 135 (right-bottom)] direction: 135, // interaction with mouse or not [Default true (decelerate to rolling init speed, and keep rolling with mouse).] keep: true }); // Giving color to each text in sphere var color = "#FF5733 "; document.querySelector(".Sphere").style.color = color; </script>
@alexpapas5535
@alexpapas5535 Год назад
@@codemmit07 you are a legend Sir , thank you so much!!
@TobinBusiness
@TobinBusiness Год назад
Hi, just using this as a template to integrate into my own portfolio but I love the look of this! I'm unable to get the contact field to work.. Where am I supposed to put my email address that sends me the info after someone fills out the contact form? Thanks!!!
@codemmit07
@codemmit07 Год назад
you can deploy it on netlify and go to Forms tab, there you can manage forms and submissions without any server-side code.
@TobinBusiness
@TobinBusiness Год назад
@@codemmit07 thank you so much !
@maxicornalba2024
@maxicornalba2024 Год назад
Hello, this library is great, everything works ok, but I cannot change the size of the radius according to the size of the screen, the innerWidth
@codemmit07
@codemmit07 Год назад
Hi, you can make it responsive by using the below code for hook. useEffect(() => { const container = '.tagcloud'; let radii; const texts = [ 'HTML', 'CSS', 'SASS', 'JavaScript', 'React', 'Vue', 'Nuxt', 'NodeJS', 'Shopify', 'Jquery', 'ES6', 'GIT', 'GITHUB', ]; function radiusValue() { if (window.screen.width <= 778) { radii = 150; } else { radii = 290; } return radii; } const options = { radius: radiusValue(), maxSpeed: 'normal', initSpeed: 'normal', keep: true, }; TagCloud(container, texts, options); }, []);
@naturediscovery10
@naturediscovery10 Год назад
Awsome. Thanks bro
@faressj
@faressj Год назад
Hey man , can you show us how to do his mouse trail
@AD-np2sh
@AD-np2sh 4 месяца назад
AGREED! His mouse trail is freaking awesome and I don't think anyone has been able to do it 😁
@codemmit07
@codemmit07 Год назад
Hi there, If you are facing problem after deployment, try using below code for hook : useEffect(() => { const container = '.tagcloud'; const texts = [ 'HTML', 'CSS', 'SASS', 'JavaScript', 'React', 'Vue', 'Nuxt', 'NodeJS', 'Shopify', 'Jquery', 'ES6', 'GIT', 'GITHUB', ]; const options = { radius: 300 , maxSpeed: 'normal', initSpeed: 'normal', keep: true, }; TagCloud(container, texts, options); }, []);
@MegaDubstepmixes
@MegaDubstepmixes Год назад
can you explain this please? How does setting a variable to radii change anything?
@codemmit07
@codemmit07 Год назад
@MegaDubstepmixes No need of it here, you can remove it. But if you want to make it responsive you can use below code: useEffect(() => { const container = '.tagcloud'; let radii; const texts = [ 'HTML', 'CSS', 'SASS', 'JavaScript', 'React', 'Vue', 'Nuxt', 'NodeJS', 'Shopify', 'Jquery', 'ES6', 'GIT', 'GITHUB', ]; function radiusValue() { if (window.screen.width <= 778) { radii = 150; } else { radii = 290; } return radii; } const options = { radius: radiusValue(), maxSpeed: 'normal', initSpeed: 'normal', keep: true, }; TagCloud(container, texts, options); }, []);
@MegaDubstepmixes
@MegaDubstepmixes Год назад
@@codemmit07 it isn't deploying to netlify still, any ideas?
@MegaDubstepmixes
@MegaDubstepmixes Год назад
@@codemmit07 it fixed it. I love you with all my heart xxx
@codemmit07
@codemmit07 Год назад
@MegaDubstepmixes I have deployed it on netlify, it works for me. Use the source code and take reference from video, make sure to install and import TagCloud, it should work.
@eduardofigueiro8862
@eduardofigueiro8862 Год назад
please neon cursor effect <3
@helloworld3196
@helloworld3196 Год назад
it shows nothing when i deploy on netlify
@navpreetsingh3007
@navpreetsingh3007 Год назад
Same with me Did you resolved it???
@helloworld3196
@helloworld3196 Год назад
@@navpreetsingh3007 yes i have done
@helloworld3196
@helloworld3196 Год назад
Its also show on netlify when I deploy
@MegaDubstepmixes
@MegaDubstepmixes Год назад
has this been fixed? i'm struggling with same error
@darkiller5219
@darkiller5219 Год назад
@@helloworld3196 please how did you solve it ?
@MarcoMata-kw5hl
@MarcoMata-kw5hl Год назад
everything shows up but after I refresh the page the text sphere will stop displaying on the screen.
@Satan-yt6ks
@Satan-yt6ks Год назад
got the text sphere to render in react, but it disappears when I reload the page.. any help would be appreciated
@anthonyangelos4449
@anthonyangelos4449 Год назад
import React, { useEffect, useRef } from "react"; import TagCloud from "TagCloud"; import "./TextSphere.css"; const TextSphere = () => { const containerRef = useRef(null); useEffect(() => { const container = containerRef.current; const texts = [ "HTML", "CSS", "JavaScript", "NodeJs", "React", "MongoDb", "MySql", "Git", "MUI", "Express", "GitHub", "AI", ]; const options = { radius: 300, maxSpeed: "normal", initSpeed: "normal", keep: true, loop: true, lockX: true, lockY: true, }; TagCloud(container, texts, options); return () => { TagCloud(container, [], {}); }; }, []); return ( <div className="text-sphere"> <span className="tagcloud" ref={containerRef}></span> </div> ); }; export default TextSphere;
@anthonyangelos4449
@anthonyangelos4449 Год назад
Try this way, it worked for me.
@Hacking-NASSA-with-HTML
@Hacking-NASSA-with-HTML Год назад
I like it 🙂. It works👍. Thank you ❤
@ppl_calls_me_dsk
@ppl_calls_me_dsk Год назад
its re rendering how to fix it
@quinojuan2
@quinojuan2 Год назад
What do you mean?
@ppl_calls_me_dsk
@ppl_calls_me_dsk Год назад
@@quinojuan2 it repeating sphere's
@ppl_calls_me_dsk
@ppl_calls_me_dsk Год назад
Expected ‘none’, URL, or filter function but found ‘alpha(’. Error in parsing value for ‘filter’. Declaration dropped.
@whitelegend5975
@whitelegend5975 Год назад
ya even I have the problem how to solve?
@kokwaichan3807
@kokwaichan3807 Год назад
Disable StrictMode in your index,js. It's provided by react when you install using npx create react app.
@codemmit07
@codemmit07 Год назад
If you are looking for its implementation in React.js. Watch on : ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-5jlDHSqjZcc.html
@user.name--oreneus21
@user.name--oreneus21 Год назад
wow
@saikiranannam1866
@saikiranannam1866 Год назад
where can i get the react source code
@codemmit07
@codemmit07 Год назад
You can checkout its implementation in React as well here : ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-5jlDHSqjZcc.html
@aadithgino8868
@aadithgino8868 Год назад
thnq
@flourishomotola5306
@flourishomotola5306 Год назад
Awesome. Thanks 👍🏿🙏🏿
@danielg.campos9662
@danielg.campos9662 Год назад
great work!!! can we do it with openGL and c++? i would love to get that code...thanks
@Hacking-NASSA-with-HTML
@Hacking-NASSA-with-HTML Год назад
"i would love to get that code.", - of course you would😁, can you even imagine how much time you need to spend to write something similar 🤷😂????
@kristinametodieva1255
@kristinametodieva1255 2 года назад
Thank you!!!!!!!!!!🙏
@okanberhoglu3813
@okanberhoglu3813 2 года назад
Thanks for great video, how can I use this on react.js?
@edwardchung9453
@edwardchung9453 2 года назад
can this be implemented with react
@codemmit07
@codemmit07 Год назад
@Edward yes
@saikiranannam1866
@saikiranannam1866 Год назад
@@codemmit07 can i get source code in react
@codemmit07
@codemmit07 Год назад
@saikiranannam1866 sure, will update you soon.
@jrsmith7831
@jrsmith7831 2 года назад
Was i supose to do something extra with the tagcloud.js, it didnt work for me :/
@shubhammittal7851
@shubhammittal7851 2 года назад
how to make that text cloud in center
@sloppypuhh3752
@sloppypuhh3752 Год назад
just create a div with a text-align: centered property
@Henry_Nunez
@Henry_Nunez 2 года назад
😊🔔
@cuntea
@cuntea 2 года назад
How can i use it in my Next.Js Project