Code To Create Simple Cartoon

Here is Simple Code To Create Cartoon

<!DOCTYPE html>
<html lang=”en”>
<head>
    <meta charset=”UTF-8″>
    <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
    <title>Cartoon Animation</title>
    <style>
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f0f8ff;
            margin: 0;
            overflow: hidden;
        }
        .cartoon-character {
            width: 100px;
            height: 100px;
            background-color: yellow;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            animation: move 5s linear infinite;
        }
        @keyframes move {
            0% { left: 0; }
            50% { left: calc(100% – 100px); }
            100% { left: 0; }
        }
    </style>
</head>
<body>
    <div class=”cartoon-character”></div>
    <script>
        // This example doesn’t require any JavaScript for the basic animation.
        // If you want to add more complex interactions or animations, you can add JavaScript code here.
    </script>
</body>
</html>

Leave a Reply

Your email address will not be published. Required fields are marked *

Resize text
Scroll to Top