Computer Multimedia and Animation - Lab Part A
Q1. Write a HTML/5 program to demonstrate the use of Font family, font variant, font style, and font size.
See code
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta mame="viewport" content="width=device-width",initial-scale=1.0>
<title>Font Example</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
.bold {
font-weight: bold;
}
.italic {
font-style: italic;
}
.small-caps {
font-variant: small-caps;
}
</style>
</head>
<body>
<p>This is a normal Paragraph</p>
<p class="bold"> Bold Paragraph </p>
<p class="italic"> Italics Paragraph </p>
<p class="small-caps"> Small Caps Paragraph </p>
</body>
</html>
Show output
Q2. Write a HTML/5 program to display random contents using list properties:
- ordered list
- Unordered list
See code
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta mame="viewport" content="width=device-width",initial-scale=1.0>
<title>List Demonstration</title>
</head>
<body>
<h2>Ordered List, Different Types</h2>
<br>
<h3>Sort by Numbers</h3>
<ol type="1">
<li>Mango</li>
<li>Guava</li>
<li>Orange</li>
<li>Apple</li>
</ol>
<br>
<h3>Sort by Capital Letters</h3>
<ol type="A">
<li>Mango</li>
<li>Guava</li>
<li>Orange</li>
<li>Apple</li>
</ol>
<br>
<h3>Sort by Lowercase Roman letters, except it starts from 4</h3>
<ol type="i" start="4">
<li>Mango</li>
<li>Guava</li>
<li>Orange</li>
<li>Apple</li>
</ol>
<br>
<h3>Sort by Numbers, Reversed</h3>
<ol reversed>
<li>Mango</li>
<li>Guava</li>
<li>Orange</li>
<li>Apple</li>
</ol>
<br>
<h2>Unordered List, Different Types</h2>
<br>
<h3>Show Discs</h3>
<ul type="disc">
<li>Mango</li>
<li>Guava</li>
<li>Orange</li>
<li>Apple</li>
</ul>
<br>
<h3>Show Circles</h3>
<ul type="circle">
<li>Mango</li>
<li>Guava</li>
<li>Orange</li>
<li>Apple</li>
</ul>
<br>
<h3>Show Squares</h3>
<ul type="square">
<li>Mango</li>
<li>Guava</li>
<li>Orange</li>
<li>Apple</li>
</ul>
</body>
</html>
Show output
Q3. Write a HTML/5 program to create gradient using css.
See Code
html
<!DOCTYPE HTML>
<HTML>
<HEAD>
<title>Gradient Example</title>
<style>
body {
/*background-color: red;*/
background: linear-gradient(to bottom, #ffcccc, #ff99cc) no-repeat;
min-height:100vh;
}
.gradient-box {
background: radial-gradient(circle, #ccffcc, #ccff99);
border-radius: 10px;
}
</style>
</HEAD>
<body>
<div class="gradient-box">
<h1>Good Morning</h1>
<p>This is an example with both a linear and radial gradient.</p>
</div>
</body>
</HTML>
Show output
Q4. Write a HTML/5 code to demonstrate following CSS animation properties:
- Delay
- Direction
- Duration
See Code
html
<!DOCTYPE html>
<html>
<head>
<title>Animation Properties Example</title>
<style>
.box {
width: 100px;
height: 100px;
background-color: red;
animation-name: move;
animation-duration: 2s;
animation-direction: alternate;
animation-delay: 1s;
animation-iteration-count: infinite;
}
@keyframes move {
from {
transform: translateX(0px);
}
to {
transform: translateX(200px);
}
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
Show output
Q5. Write a HTML/5 program to demonstrate key frames
See Code
html
<!DOCTYPE html>
<html lang="en">
<head>
<title>Keyframes Animation Example</title>
<style>
.box {
width: 100px;
height: 100px;
margin: 50px; /*Personally added by Jp, to ensure that the box is fully visible*/
background-color: red;
position: relative;
animation: move 2s infinite;
}
@keyframes move {
0% {
left: 0px;
}
50% {
left: 200px;
transform: rotate(45deg);
}
100% {
left: 0px;
}
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
Show output
Q6. Write a HTML/5 code to demonstrate CSS transition and transformation.
See code
html
<!DOCTYPE html>
<html>
<head>
<title>CSS Transition and Transformation Example</title>
<style>
.box{
width:100px;
height:100px;
background-color: red;
position: relative;
transition: transform 4s;
}
.box:hover {
transform: rotate(45deg);
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
Show output
Q7. Write a HTML/5 program to turn on/off a light bulb using JavaScript.
Make use of image and buttons.
WARNING
This program requires you to use an external image for bulb off and bulb on states. I used light_off and light_2 from google fonts for this.
NOTE
Remember to download light_off as png using the given button and rename it to bulb_off.png. It will not work without this!
NOTE
Remember to download light_2 as png using the given button and rename it to bulb_on.png. It will not work without this!
See code
html
<!DOCTYPE HTML>
<html>
<head>
<title> </title>
<script>
function toggleLight() {
var bulb = document.getElementById("lightbulb");
if (bulb.src.match("bulb_on.png"))
{
bulb.src = "bulb_off.png";
bulb.style.background="";
}
else
{
bulb.src = "bulb_on.png";
bulb.style.background="radial-gradient(circle, rgba(240,251,63,1) 0%, rgba(252,70,107,0) 58%)";
}
}
</script>
<style>
</style>
</head>
<body>
<div>
<img id="lightbulb" src=bulb_off.png alt="Light Bulb"/>
</div>
<div>
<button onclick="toggleLight()">Toggle Light</button>
</div>
</body>
</html>