Html codes
184 subscribers
112 photos
15 videos
226 files
198 links
๐Ÿ‘‹ Welcome to Html Codee
๐Ÿš€ Here youโ€™ll find mini tools, code snippets, and web tricks to grow fast.
๐Ÿงฉ Built with HTML, PHP, and smart ideas.
๐Ÿ’Œ Support: support@bestpage.x10.mx
๐Ÿ If you don't walk today, run tomorrow.
Download Telegram
๐Ÿ“ฑ iPhone 17 โ€“ The Future of Smartphones? ๐Ÿš€

Apple's iPhone 17 is already generating buzz, even before its official announcement! Hereโ€™s what leaks and rumors suggest about this game-changing device:

โœ… Ultra-Thin Design โ€“ A new iPhone 17 Air model is rumored to be Appleโ€™s slimmest phone ever! (Source)

โœ… Camera Revolution โ€“ Say goodbye to the old camera bump! The Pro models might feature a rectangular camera bar. (Source)

โœ… 120Hz ProMotion Display โ€“ Smooth scrolling for all models, not just the Pro versions! (Source)

โœ… Appleโ€™s Own 5G Modem โ€“ Faster speeds and better battery life! (Source)

โœ… Possible iPhone 17 Ultra? โ€“ Apple might introduce a premium "Ultra" model with next-level performance. (Source)

โšก Want to stay updated on the latest iPhone & tech news? Subscribe to @Html_codee now! ๐Ÿ‘‡

๐Ÿ”— Join us: @Html_codee

๐Ÿ‘‰ What do you think? Which feature excites you the most? Comment below! ๐Ÿ’ฌ
Hello everyone! Why the inactivity? ๐Ÿค”
SpaceX.html
10.4 KB
Share my html file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GSAP</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js"></script>
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #111;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
overflow: hidden;
}

.container {
width: 600px;
height: 400px;
position: relative;
}

.box {
width: 100px;
height: 100px;
background-color: #fff;
border-radius: 10px;
position: absolute;
top: 150px;
left: 250px;
}

.circle {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #007bff;
position: absolute;
top: 50px;
left: 50px;
}

.text {
position: absolute;
color: #fff;
font-size: 24px;
font-weight: 600;
opacity: 0;
top: 300px;
left: 100px;
}
</style>
</head>
<body>
<div class="container">
<div class="box"></div>
<div class="circle"></div>
<div class="text">GSAP </div>
</div>

<script>
const tl = gsap.timeline({ repeat: -1, yoyo: true });

tl.from(".box", {
x: -200,
opacity: 0,
duration: 1,
ease: "power2.out"
})
.to(".box", {
y: -100,
duration: 1,
ease: "bounce.out"
})
.to(".box", {
scale: 1.2,
duration: 0.5,
ease: "power1.inOut"
})
.to(".box", {
rotation: 360,
duration: 1,
ease: "elastic.out(1, 0.3)"
}, "+=0.5")

.from(".circle", {
x: 200,
opacity: 0,
duration: 1,
ease: "power2.out"
}, "<")
.to(".circle", {
y: 100,
duration: 1,
ease: "bounce.out"
}, "<+0.2")
.to(".circle", {
scale: 0.8,
duration: 0.5,
ease: "power1.inOut"
}, "<")
.to(".circle", {
x: 300,
duration: 1,
ease: "elastic.out(1, 0.3)"
}, "<+0.5")

.fromTo(".text",
{ opacity: 0, y: 20 },
{ opacity: 1, y: 0, duration: 1, ease: "power3.out" },
"<0.5"
);
</script>
</body>
</html>
Which CSS framework do you prefer for your projects?
Anonymous Poll
100%
Tailwind css
0%
Bootstrap
0%
Other
CodePen Blog
Chrisโ€™ Corner: CSS Powered Componentry

New CSS features help us in all sorts of different ways, but here weโ€™re going to look at them when they power a specific type of component, or make a type of component newly possible with less or no JavaScript.

* A single element CSS donut timer/countdown timer by Ben Frain โ€” The surely least-used gradient type, conic-gradient() is used here to make donut (Iโ€™d call them charts) which when animated behave like a timer. This kind of thing changes the web in that we donโ€™t need to reach for weightier or more complex technology to do something like this, which is actually visually pretty simple.
* Sliding 3D Image Frames In CSS by Temani Afif โ€” This one isnโ€™t rife with new CSS features, but that almost makes it more mind blowing to me. In the HTML is only an but the end result is a sliding-door on a 3D box that slides up to reveal the photo. This requires multiple backgrounds including a conic-gradient, a box-shadow and very exotic clip-path, not to mention a transition for the movement.
* โญ๏ธ Carousel Configurator by the Chrome Gang โ€” This one is wild. It only works in Google Chrome Canary because of experimental features. Scrolling snapping is there of course, and thatโ€™s neat and fundamental to carousels, but the other three features are, as I said, wild. (1) a ::scroll-button which appends, apparently, a fully interactive button that advances scroll by one page. (2) a ::scroll-marker and group pseudo element which are apparently a replacement for a scrollbar and are instead fully interactive stated buttons that represent how many pages a scrolling container has. (3) an interactivity: inert; declaration which you can apply within an animation-timeline such that off-screen parts of the carousel are not interactive. All this seems extremely experimental but Iโ€™m here for it.
* Hide a header when scrolling down, show it again when scrolling up by Bramus Van Damme โ€” With scroll-driven animations, you can โ€œdetectโ€ if a page is being scrolled up or down, and in this case set the value of custom properties based on that information. Then with style() queries, set other styles, like hiding or showing a header. The big trick here is persisting the styles even when not scrolling, which involves an infinite transition-delay. This is the magic that keeps the header hidden until you scroll back up.
* Center Items in First Row with CSS Grid by Ryan Mulligan โ€” When youโ€™re using CSS Grid, for the most part, you set up grid lines and place items exactly along those grid lines. Thatโ€™s why itโ€™s weird to see โ€œstaggeredโ€ looking layouts, which is what it looks like when one row of items doesnโ€™t line up exactly with the one below it. But if you just make twice as many columns as you need and offset by one when you need to, youโ€™ve got this kind of control. The trick is figuring out when.
๐Ÿ“š New Code

๐Ÿ”– Features:
โœ… Glowing Neon Effect 
โœ… Smooth Color Transition 
โœ… Customizable Text & Colors 
โœ… Pure CSS Animation

๐Ÿ”– Code:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Glowing Text Effect</title>
    <style>
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background: black;
            overflow: hidden;
        }
        h1 {
            font-size: 4rem;
            font-weight: bold;
            color: #fff;
            text-transform: uppercase;
            position: relative;
            animation: glow 3s infinite alternate;
        }
        @keyframes glow {
            0% {
                text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 40px #ff4500;
            }
            50% {
                text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 40px #00ff99;
            }
            100% {
                text-shadow: 0 0 10px #0000ff, 0 0 20px #0000ff, 0 0 40px #0099ff;
            }
        }
    </style>
</head>
<body>
    <h1>Html_codee</h1>
</body>
</html>

๐Ÿ”ฅ Experience the magic! 
Subscribe to @Html_codee for more amazing web effects! ๐Ÿš€
๐Ÿฆพ
What about this car? ๐Ÿ˜Ž
Which tag is used to create a list with bullets?
Anonymous Quiz
40%
<ul>
40%
<ol>
20%
<li>
0%
<list>
๐Ÿ‘2
Hi there!