🔥 “One bug fixed, two new ones unlocked.” — the unofficial motto of every developer. 😅 💻 Day 50 of #100DaysOfCode — Dilkash Bharat Update 🇮🇳 Today’s mission: enhance the home page UI and give the carousel a major facelift 🚀 🎡 Here’s what I worked on: Rebuilt the carousel from scratch — this time, it slides vertically, because who says carousels always have to move sideways? 😎 Fixed endless layout battles — sometimes cards overflowed like they were escaping the container, sometimes they shrunk into hiding 😭 Finally cracked the perfect animation logic for smooth, controlled transitions (after countless console.logs and caffeine refuels ☕) And just when I thought I was done… my single place show page broke out of nowhere 💀 Now that’s my next debugging mission for tomorrow. These are the kind of days that make you realize — coding isn’t just about syntax, it’s about stubborn creativity. But hey, vertical carousels now work like a dream ✨ (And my show page? It’ll rise again tomorrow 😂) #100DaysOfCode #WebDevelopment #Frontend #Animation #UIUX #JavaScript #EJS #TailwindCSS #FrontendDesign #FullStackDevelopment #LearningInPublic #BuildInPublic #CreativeCoding #Glassmorphism #Debugging #DeveloperHumor #CodingJourney #IndiaTech #OpenToWork #SoftwareDevelopment
More Relevant Posts
-
#day2of365daysofcode CSS animations do not just move elements. They bring a page to life. In this post, I am sharing examples that show how each @keyframes property actually behaves in action. If you are learning frontend, understanding animations is a huge step toward building smooth, engaging user experiences. Watch. Practice. Experiment. Your UI magic level goes up each time. Save for later and tag someone learning CSS. I’m challenging myself to post one piece of tech learning every day for the next 365 days. Today is Day 2. #day2of365daysofcode #frontenddevelopment #css #cssanimations #webdevelopment #programming #javascript #html #codingjourney #learncoding #developercommunity #techlearning #uiuxdesign #365daysofcode #webdev
To view or add a comment, sign in
-
GitHub: https://lnkd.in/eWWEya5y 🔥 Project 4/20 - Image Slider ✨ Create a Smooth Image Slider using JavaScript + CSS Transitions! ✨ Image sliders are timeless — from 2010’s web nostalgia to modern UI trends, they’ve never gone out of style. This project shows how to build a clean, auto-playing image slider using: setInterval() for automatic transitions Arrays to store image elements CSS transitions for buttery-smooth fade effects A perfect mini-project for your portfolio or GitHub repo, showcasing practical DOM manipulation and animation logic. Don’t just code — craft interfaces that move. 🚀 Save this post and tag a dev who loves clean UI ❤ #webdevelopment #javascript #frontenddevelopment #cssanimations #htmlcssjs #webdesign #developers #codinglife #programming #frontendprojects #techcommunity #learnjavascript #dommanipulation #webdevcommunity #uicomponents #codingtutorial #githubproject #setinterval #frontendinspiration #modernui #codewithusman #softwareengineering #webdevlearning #programminglife #creativefrontend
To view or add a comment, sign in
-
Drop a “CODE” in the comments if you want this project! 💻⚡ Yes, you read that right this entire interactive Rock 🪨 Paper 📄 Scissors ✂️ Game is built using just HTML, CSS, and JavaScript! ⚡ This project is more than just a fun little challenge, it’s a practical example of how JavaScript makes web pages come alive with logic, interactivity, and animation. 🎮 Here’s what’s happening behind the code: 👉 Event listeners catch every button click from the player. 👉 JavaScript randomly selects the computer’s move. 👉 Dynamic DOM manipulation updates the scores instantly. 👉 Smooth animations make it feel like a real-time game! ⚙️ It’s simple, creative, and a perfect beginner-friendly project for anyone learning frontend development or JavaScript fundamentals. we believe learning to code should be hands-on and fun projects like this one help learners understand the real power of programming through practice. 💡 So if you want to learn how to make websites interactive, build your own mini-games, and actually see your code in action — this is the project to start with. 🧠🔥 💬 Comment “CODE” to get the full snippet and start building it yourself today! 🚀 #Cedlearn #JavaScript #FrontendDevelopment #CodingProjects #WebDevelopment #LearnToCode #ProgrammingCommunity #DeveloperJourney #CodingLife #CodeWithCedlearn #RockPaperScissors #CodingChallenge #JSLogic #TechEducation #WebDesign #CodeSnippet #StudentsOfCedlearn #CodeEveryday #InnovationThroughLearning #ProgrammingIsFun
To view or add a comment, sign in
-
This frontend UI library unlocks a whole new set of possibilities 🔥 It helps you build infinite scroll components where you can scroll endlessly in all directions. Not only does it make your UI more engaging, but it also opens the door for creative layouts, interactive maps, and immersive experiences :) Source 🔗: github . com/charlieclark/thiings-grid Hope this helps ✅ Drop a like if you found this post helpful! 👍 Follow Ram Maheshwari ♾️ for more 💎 #html #css #javascript #100daysofcode #webdevelopment #programming
To view or add a comment, sign in
-
🏔️ When your homepage starts moving more than you do 😅 💻 Day 49 of #100DaysOfCode — Dilkash Bharat Update 🇮🇳 Today was all about bringing the home page to life — not just visually, but emotionally. ✨ Here’s what I built: 🏠 Home Page Layout: Split the page into two dynamic sections — content on one side and a live scroll animation of the latest places on the other. 🧊 Visuals That Move: Added background animations where mountain images float — some drift randomly, while others follow the cursor as if exploring Bharat with you. 🖋️ Content Section: Included a title, app description, action buttons, and social media icons for a polished first impression. 🎨 Combined motion and minimalism for a clean, interactive, and modern landing experience. 📌 The home page isn’t fully complete yet, but for the sake of consistency and discipline, I’m sharing my progress today — because showing up daily is just as important as finishing perfectly. 💪 This one felt like painting with code — making the homepage breathe instead of just existing. Every movement now feels intentional, and that’s the magic I love about frontend work ❤️ Next up → polish the animations and maybe add a few hidden Easter eggs 👀 #100DaysOfCode #WebDevelopment #Frontend #Animation #UIUX #Glassmorphism #JavaScript #NodeJS #Express #TailwindCSS #EJS #FrontendDev #MotionDesign #CreativeCoding #BuildInPublic #LearningInPublic #CodingJourney #FullStackDevelopment #IndiaTech #DeveloperLife #OpenToWork #DesignThinking
To view or add a comment, sign in
-
useEffect vs useLayoutEffect — the difference that actually matters! Most devs use useEffect for everything, but here’s what’s happening under the hood 👇 useEffect: Runs after the paint (i.e., after the screen updates). ✅ Great for API calls, event listeners, or logging. 🚫 Avoid for DOM measurements or layout changes — you’ll see a flicker. useLayoutEffect: Runs before the paint (right after DOM mutations but before the browser updates the screen). ✅ Perfect for reading layout, measuring elements, or synchronizing animations. 🚫 Avoid overusing it — it can block rendering and hurt performance. 💡 Quick rule: If it affects what you see → use useLayoutEffect If it affects after you see → use useEffect 💬 What’s your go-to use case for useLayoutEffect? Let’s make this a mini thread of learnings 👇 #ReactJS #FrontendDevelopment #WebDevelopment #useEffect #CodingTips #JavaScript #LearnInPublic
To view or add a comment, sign in
-
-
GitHub: https://lnkd.in/eN3aYT5M 🔥 Project 10/20 – Tabs / Accordion ✨ Create Interactive Tabs using JavaScript + Active Classes + DOM! ✨ Tabs are everywhere — from dashboards to portfolios. This project teaches how to build clean, responsive tabs using: 🧩 Active class toggling for switching content 🪄 DOM manipulation for interactivity 🎨 Smooth fade animations for better UX A practical, beginner-friendly JavaScript project that boosts your UI/UX game. Switch tabs like a pro. 🚀 #webdevelopment #javascript #frontenddevelopment #frontendprojects #htmlcssjs #tabsui #accordionmenu #vanillajs #learnjavascript #programming #webdesign #techcommunity #githubproject #uicomponents #frontendinspiration #modernui #creativefrontend #webdevcommunity #codinglife #developerlife #softwareengineering #programminglife #frontendskills #interactivedesign #codewithusman
To view or add a comment, sign in
-
Built a Classic Snake Game using HTML, CSS, and JavaScript This project was an exciting opportunity to combine logic, creativity, and design into a single experience. The game includes: • Smooth snake movement controlled by keyboard input • Collision detection for handling game-over scenarios • Dynamic food generation and score tracking • A clean and responsive layout for a better user experience Through this project, I deepened my understanding of: • DOM manipulation and rendering logic • Event listeners and keyboard handling • CSS grid layout for game design • Game loop and animation logic in JavaScript Building this reminded me how even simple games can teach powerful programming principles like loops, conditionals, and real-time updates. Always keep building and experimenting — that’s how real learning happens. I’d love to hear your thoughts and feedback. #HTML #CSS #JavaScript #WebDevelopment #Frontend #SnakeGame #CodingJourney
To view or add a comment, sign in
-
Most developers over-customize their VS Code setup. Themes. Fonts. Extensions. Icons. Animations Before they even write a line of code, they’ve already spent 30 minutes “configuring productivity.” I used to be the same until I stripped my setup to the bare minimum. Now my VS Code has: - 1 theme (Fleet UI) - 1 font (JetBrains Mono) - 4 extensions: Python, Prettier, Color Highlight, and React snippets That’s it. The result? - Fewer distractions - Faster startup time - Complete focus on building The best productivity hack isn’t another extension. It’s removing the ones that pull your attention away. A clean workspace means a clear mind. 👉 Do you prefer a minimal or fully customized editor setup? #webdevelopment #softwareengineering #codingproductivity #vscode #buildinpublic
To view or add a comment, sign in
-
-
🚀 Project Showcase – Algorithm Visualizer I’ve built an Algorithm Visualizer using React.js, designed to help learners understand how sorting algorithms work step by step through real-time animations 🔄✨ 🎥 Here’s a quick preview video of the project in action! Currently, it includes: 🔹 Bubble Sort 🔹 Quick Sort 🔹 Merge Sort This is still an ongoing project, and I’ll be adding more sorting algorithms soon — along with UI improvements and new visualization features 🎯 💻 Check out the full project on GitHub: 🔗 https://lnkd.in/eArQfDgx Would love to hear your feedback or suggestions! 🙌 #ReactJS #JavaScript #Algorithms #SortingAlgorithms #WebDevelopment #OpenSource #FrontendDevelopment #LearningByBuilding #AlgorithmVisualizer
To view or add a comment, sign in
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development