Mixtape
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 - 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);

Developer | Mike Fowler |
Username | mikefowler |
Uploaded | August 22, 2022 |
Rating | 3 |
Size | 3,691 Kb |
Views | 28,322 |
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!
Name | Size |
Map Locator Marker | 4,026 Kb |
A Pen by Mike Fowler | 3,067 Kb |
Coverflow Animation | 2,864 Kb |
Page Transitions in Backbone | 3,691 Kb |
Navigation Indicator | 3,472 Kb |
Image Markers | 3,194 Kb |
Nickname generator | 7,313 Kb |
Rounded Avatar | 3,263 Kb |
IOS7 Geolocation Map Marker | 4,359 Kb |
Coverflow | 3,581 Kb |
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!
Name | Username | Size |
CSS Gem Badge | Orchard | 3,335 Kb |
Ghost | Mghayour | 11,738 Kb |
A Pen by Alexandru Pora | Axpro | 1,615 Kb |
Simple animated hover effect | Pobee-norris | 3,044 Kb |
Right Click Menu | Anodpixels | 2,252 Kb |
Drifting Clouds | Benedikte | 2,247 Kb |
Social.svg.min | Larsenwork | 13,849 Kb |
Wikipedia API | Coderpilot | 2,802 Kb |
A Pen by Patrick Cox | Pcridesagain | 2,899 Kb |
A Pen by Ash | Littleginger | 2,386 Kb |
Surf anonymously, prevent hackers from acquiring your IP address, send anonymous email, and encrypt your Internet connection. High speed, ultra secure, and easy to use. Instant setup. Hide Your IP Now!