Untitled

mail@pastecode.io avatar
unknown
html
a month ago
1.2 kB
2
Indexable
Never
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Good Day Website</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            margin-top: 50px;
        }

        h1 {
            color: #4CAF50;
        }

        #revolveButton {
            padding: 10px 20px;
            font-size: 16px;
            background-color: #008CBA;
            color: white;
            border: none;
            cursor: pointer;
            transition: transform 0.5s ease-in-out;
        }

        #revolveButton:hover {
            background-color: #005f6b;
        }
    </style>
</head>
<body>

    <h1>Have a Good Day!</h1>
    <button id="revolveButton" onclick="revolveButton()">Натисни за късмет!</button>

    <script>
        let angle = 0;

        function revolveButton() {
            const button = document.getElementById("revolveButton");
            angle += 360;
            button.style.transform = `rotate(${angle}deg)`;
        }
    </script>

</body>
</html>
Leave a Comment