Practice

Developer
Size
1,943 Kb
Views
6,072

How do I make an practice?

What is a practice? How do you make a practice? This script and codes were developed by Zenvercoder on 15 January 2023, Sunday.

Practice Previews

Practice - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>practice</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div>bounce</div>
<input type="text" value="hello">
<span class="orig">Original</span>
<span class="tran">Transformed</span> <script src="js/index.js"></script>
</body>
</html>

Practice - Script Codes CSS Codes

div { font-size: 1em; transition: all 1s ease;
}
div:hover { transform: translate(0, -1em);
}
span { display: inline-block; width:10em; height: 10em; position: absolute; top: 0; outline: 1px solid black; transition: all 1s ease;
}
.orig { background-color: red;
}
.tran { background-color: blue; transform: rotate(45deg) translate(20em) scale(2,1);
}
input { position: relative; top: 10em; z-index: 1000; transition: outline 0.5s ease; font-size: 2em; outline-color: white;
}
input:focus { outline-color: hsl(200, 60%, 70%); outline-width: 10px;
}
input.invalid { outline-style: auto; outline-color: hsl(0, 100%, 50%); outline-width: 20px;
}

Practice - Script Codes JS Codes

var input = document.querySelector("input")
input.addEventListener("blur", function(event){ if(this.value == "cherry"){ this.classList.remove("invalid") } else{ this.classList.add("invalid") }
})
Practice - Script Codes
Practice - Script Codes
Home Page Home
Developer Zenvercoder
Username zenvercoder
Uploaded January 15, 2023
Rating 3
Size 1,943 Kb
Views 6,072
Do you need developer help for Practice?

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!

Zenvercoder (zenvercoder) Script Codes
Create amazing captions 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!