Mixtape

Developer
Size
3,691 Kb
Views
28,336

How do I make an mixtape?

What is a mixtape? How do you make a mixtape? This script and codes were developed by Mike Fowler on 22 August 2022, Monday.

Mixtape Previews

Mixtape - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Mixtape</title> <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! */ .mixtape { width: 8em; height: 5em; background: #333; border-radius: 0.25em; position: relative; perspective: 15em;
}
.mixtape * { position: absolute;
}
.mixtape .wing { width: 0.1em; height: 2em; background: #333; bottom: 0.5em;
}
.mixtape .wing.wing--left { right: 100%; border-top-left-radius: 0.2em; border-bottom-left-radius: 0.2em;
}
.mixtape .wing.wing--right { left: 100%; border-top-right-radius: 0.2em; border-bottom-right-radius: 0.2em;
}
.mixtape .screw { width: 0.25em; height: 0.25em; background: #444; box-shadow: inset 0 0 4px rgba(180, 180, 180, 0.2); border-radius: 50%;
}
.mixtape .screw.screw--1 { top: 0.2em; left: 0.2em;
}
.mixtape .screw.screw--2 { top: 0.2em; right: 0.2em;
}
.mixtape .screw.screw--3 { bottom: 0.2em; left: 0.2em;
}
.mixtape .screw.screw--4 { bottom: 0.25em; right: 0.25em;
}
.mixtape .grip { width: 6em; height: 2em; left: 1em; bottom: 0; border-top-left-radius: 0.1em; border-top-right-radius: 0.1em; border-top: 0.1em solid #444; border-left: 0.05em solid #2c2c2c; border-right: 0.05em solid #2c2c2c; background: #3c3c3c; transform-origin: 50% 100%; transform: rotateX(60deg);
}
.mixtape .label { width: 7em; height: 3em; left: 0.5em; top: 0.5em; border-radius: 0.15em; background: #ccc;
}
.mixtape .window { background: #333; width: 5em; height: 1.5em; left: 1.5em; top: 1.5em; border-radius: 0.15em;
}
.mixtape .reel { width: 1em; height: 1em; border-radius: 50%; top: 1.75em; background: white;
}
.mixtape .reel.reel--1 { left: 1.75em;
}
.mixtape .reel.reel--2 { right: 1.75em;
}
body, html { height: 100%;
}
body { display: flex; flex-direction: row wrap; align-items: center; justify-content: center; font-size: 30px;
}
.mixtape { display: flex-item;
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <div class="mixtape"> <i class="wing wing--left"></i> <i class="wing wing--right"></i> <i class="screw screw--1"></i> <i class="screw screw--2"></i> <i class="screw screw--3"></i> <i class="screw screw--4"></i> <i class="label"></i> <i class="window"></i> <i class="reel reel--1"></i> <i class="reel reel--2"></i> <i class="grip"></i>
</div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Mixtape - Script Codes CSS Codes

.mixtape { width: 8em; height: 5em; background: #333; border-radius: 0.25em; position: relative; perspective: 15em;
}
.mixtape * { position: absolute;
}
.mixtape .wing { width: 0.1em; height: 2em; background: #333; bottom: 0.5em;
}
.mixtape .wing.wing--left { right: 100%; border-top-left-radius: 0.2em; border-bottom-left-radius: 0.2em;
}
.mixtape .wing.wing--right { left: 100%; border-top-right-radius: 0.2em; border-bottom-right-radius: 0.2em;
}
.mixtape .screw { width: 0.25em; height: 0.25em; background: #444; box-shadow: inset 0 0 4px rgba(180, 180, 180, 0.2); border-radius: 50%;
}
.mixtape .screw.screw--1 { top: 0.2em; left: 0.2em;
}
.mixtape .screw.screw--2 { top: 0.2em; right: 0.2em;
}
.mixtape .screw.screw--3 { bottom: 0.2em; left: 0.2em;
}
.mixtape .screw.screw--4 { bottom: 0.25em; right: 0.25em;
}
.mixtape .grip { width: 6em; height: 2em; left: 1em; bottom: 0; border-top-left-radius: 0.1em; border-top-right-radius: 0.1em; border-top: 0.1em solid #444; border-left: 0.05em solid #2c2c2c; border-right: 0.05em solid #2c2c2c; background: #3c3c3c; transform-origin: 50% 100%; transform: rotateX(60deg);
}
.mixtape .label { width: 7em; height: 3em; left: 0.5em; top: 0.5em; border-radius: 0.15em; background: #ccc;
}
.mixtape .window { background: #333; width: 5em; height: 1.5em; left: 1.5em; top: 1.5em; border-radius: 0.15em;
}
.mixtape .reel { width: 1em; height: 1em; border-radius: 50%; top: 1.75em; background: white;
}
.mixtape .reel.reel--1 { left: 1.75em;
}
.mixtape .reel.reel--2 { right: 1.75em;
}
body, html { height: 100%;
}
body { display: flex; flex-direction: row wrap; align-items: center; justify-content: center; font-size: 30px;
}
.mixtape { display: flex-item;
}

Mixtape - Script Codes JS Codes

(function() {
}).call(this);
Mixtape - Script Codes
Mixtape - Script Codes
Home Page Home
Developer Mike Fowler
Username mikefowler
Uploaded August 22, 2022
Rating 3
Size 3,691 Kb
Views 28,336
Do you need developer help for Mixtape?

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!

Mike Fowler (mikefowler) Script Codes
Create amazing Facebook ads 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!