KITT

Developer
Size
3,255 Kb
Views
30,360

How do I make an kitt?

My first css animation. What is a kitt? How do you make a kitt? This script and codes were developed by Pete Nawara on 10 September 2022, Saturday.

KITT Previews

KITT - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>KITT</title> <script src="https://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ body { background: #111;
}
@-webkit-keyframes one { 0% { opacity: 0.2; } 10% { opacity: 1; } 20% { opacity: 0.2; } 30% { opacity: 0.1; } 100% { opacity: 0.1; }
}
@-webkit-keyframes two { 0% { opacity: 0.1; } 10% { opacity: 0.2; } 20% { opacity: 1; } 30% { opacity: 0.2; } 40% { opacity: 0.1; } 80% { opacity: 0.1; } 90% { opacity: 0.2; } 100% { opacity: 1; }
}
@-webkit-keyframes three { 0% { opacity: 0.1; } 10% { opacity: 0.1; } 20% { opacity: 0.2; } 30% { opacity: 1; } 40% { opacity: 0.2; } 50% { opacity: 0.1; } 70% { opacity: 0.1; } 80% { opacity: 0.2; } 90% { opacity: 1; } 100% { opacity: 0.2; }
}
@-webkit-keyframes four { 0% { opacity: 0.1; } 20% { opacity: 0.1; } 30% { opacity: 0.2; } 40% { opacity: 1; } 50% { opacity: 0.1; } 60% { opacity: 0.1; } 70% { opacity: 0.2; } 80% { opacity: 1; } 90% { opacity: 0.2; } 100% { opacity: 0.1; }
}
@-webkit-keyframes five { 0% { opacity: 0.1; } 30% { opacity: 0.1; } 40% { opacity: 0.2; } 50% { opacity: 1; } 60% { opacity: 0.2; } 70% { opacity: 1; } 80% { opacity: 0.2; } 10% { opacity: 0.1; } 100% { opacity: 0.1; }
}
@-webkit-keyframes six { 0% { opacity: 0.1; } 40% { opacity: 0.1; } 50% { opacity: 0.2; } 60% { opacity: 1; } 70% { opacity: 0.2; } 80% { opacity: 0.1; } 100% { opacity: 0.1; }
}
body .lights { width: 323px; background: black; margin: 10% auto; padding: 5px 5px 0px; box-shadow: 1px 1px 0px #191919, -1px -1px 3px #0f0f0f;
}
body .light { width: 50px; height: 40px; background: red; background: radial-gradient(ellipse at center, #ff4d4d 0%, red 200%); /* W3C */ display: inline-block; box-shadow: 0px 0px 100px orangered, 0px 0px 30px #ff4d4d;
}
body .light.one { -webkit-animation: one 2s linear; -webkit-animation-iteration-count: infinite;
}
body .light.two { -webkit-animation: two 2s linear; -webkit-animation-iteration-count: infinite;
}
body .light.three { -webkit-animation: three 2s linear; -webkit-animation-iteration-count: infinite;
}
body .light.four { -webkit-animation: four 2s linear; -webkit-animation-iteration-count: infinite;
}
body .light.five { -webkit-animation: five 2s linear; -webkit-animation-iteration-count: infinite;
}
body .light.six { -webkit-animation: six 2s linear; -webkit-animation-iteration-count: infinite;
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <div class="lights"> <div class="light one"></div> <div class="light two"></div> <div class="light three"></div> <div class="light four"></div> <div class="light five"></div> <div class="light six"></div>
</div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
</body>
</html>

KITT - Script Codes CSS Codes

body { background: #111;
}
@-webkit-keyframes one { 0% { opacity: 0.2; } 10% { opacity: 1; } 20% { opacity: 0.2; } 30% { opacity: 0.1; } 100% { opacity: 0.1; }
}
@-webkit-keyframes two { 0% { opacity: 0.1; } 10% { opacity: 0.2; } 20% { opacity: 1; } 30% { opacity: 0.2; } 40% { opacity: 0.1; } 80% { opacity: 0.1; } 90% { opacity: 0.2; } 100% { opacity: 1; }
}
@-webkit-keyframes three { 0% { opacity: 0.1; } 10% { opacity: 0.1; } 20% { opacity: 0.2; } 30% { opacity: 1; } 40% { opacity: 0.2; } 50% { opacity: 0.1; } 70% { opacity: 0.1; } 80% { opacity: 0.2; } 90% { opacity: 1; } 100% { opacity: 0.2; }
}
@-webkit-keyframes four { 0% { opacity: 0.1; } 20% { opacity: 0.1; } 30% { opacity: 0.2; } 40% { opacity: 1; } 50% { opacity: 0.1; } 60% { opacity: 0.1; } 70% { opacity: 0.2; } 80% { opacity: 1; } 90% { opacity: 0.2; } 100% { opacity: 0.1; }
}
@-webkit-keyframes five { 0% { opacity: 0.1; } 30% { opacity: 0.1; } 40% { opacity: 0.2; } 50% { opacity: 1; } 60% { opacity: 0.2; } 70% { opacity: 1; } 80% { opacity: 0.2; } 10% { opacity: 0.1; } 100% { opacity: 0.1; }
}
@-webkit-keyframes six { 0% { opacity: 0.1; } 40% { opacity: 0.1; } 50% { opacity: 0.2; } 60% { opacity: 1; } 70% { opacity: 0.2; } 80% { opacity: 0.1; } 100% { opacity: 0.1; }
}
body .lights { width: 323px; background: black; margin: 10% auto; padding: 5px 5px 0px; box-shadow: 1px 1px 0px #191919, -1px -1px 3px #0f0f0f;
}
body .light { width: 50px; height: 40px; background: red; background: radial-gradient(ellipse at center, #ff4d4d 0%, red 200%); /* W3C */ display: inline-block; box-shadow: 0px 0px 100px orangered, 0px 0px 30px #ff4d4d;
}
body .light.one { -webkit-animation: one 2s linear; -webkit-animation-iteration-count: infinite;
}
body .light.two { -webkit-animation: two 2s linear; -webkit-animation-iteration-count: infinite;
}
body .light.three { -webkit-animation: three 2s linear; -webkit-animation-iteration-count: infinite;
}
body .light.four { -webkit-animation: four 2s linear; -webkit-animation-iteration-count: infinite;
}
body .light.five { -webkit-animation: five 2s linear; -webkit-animation-iteration-count: infinite;
}
body .light.six { -webkit-animation: six 2s linear; -webkit-animation-iteration-count: infinite;
}
KITT - Script Codes
KITT - Script Codes
Home Page Home
Developer Pete Nawara
Username petebot
Uploaded September 10, 2022
Rating 3
Size 3,255 Kb
Views 30,360
Do you need developer help for KITT?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Pete Nawara (petebot) Script Codes
Create amazing SEO content with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!