Radiohead Album Cover VueJS

Size
3,651 Kb
Views
8,096

How do I make an radiohead album cover vuejs?

Recreated Radiohead's album cover for In Rainbow using VueJS. What is a radiohead album cover vuejs? How do you make a radiohead album cover vuejs? This script and codes were developed by Daniel Gonzalez on 03 January 2023, Tuesday.

Radiohead Album Cover VueJS Previews

Radiohead Album Cover VueJS - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Radiohead Album Cover VueJS</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container" id="app"> <input type="text" maxlength="11" placeholder="Enter Text" v-model="message"/> <ul> <li class="rainbow">{{firstMessage}}</li> <li class="rainbow">{{secondMessage}}</li> <li class="rainbow">{{thirdMessage}}</li> <li class="rainbow">{{fourthMessage}}</li> <li class="rainbow">{{fifthMessage}}</li> <li class="rainbow">{{sixthMessage}}</li> <li class="rainbow">{{seventhMessage}}</li> </ul>
</div> <script src='https://cdnjs.cloudflare.com/ajax/libs/vue/2.3.4/vue.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Radiohead Album Cover VueJS - Script Codes CSS Codes

@import url("https://fonts.googleapis.com/css?family=Libre+Franklin:400,500,600");
body { font-family: 'Libre Franklin', sans-serif; background-color: #111;
}
.container { width: 350px; margin: 50px auto;
}
@media screen and (min-width: 768px) { .container { width: 615px; }
}
ul { padding: 0 0 0 10px;
}
ul, li, .rainbow { list-style: none; font-weight: 500; color: white; letter-spacing: 10px; text-transform: uppercase; font-size: 28px;
}
@media screen and (min-width: 768px) { ul, li, .rainbow { font-size: 54px; }
}
li:nth-child(7n + 1) { color: #FFF168;
}
li:nth-child(7n + 2) { color: #2284C0;
}
li:nth-child(7n + 3) { color: #FF6531;
}
li:nth-child(7n + 4) { color: #00BB58;
}
li:nth-child(7n + 5) { color: #F8B240;
}
li:nth-child(7n + 6) { color: #EB2526;
}
li:nth-child(7n + 7) { color: #AEEAF4;
}
input[type="text"] { display: block; margin: auto; width: 150px; height: 10px; padding: 15px; background: transparent; border: 1px solid white; outline: none; color: white; font-size: 18px;
}
input[type="text"]::-webkit-input-placeholder { color: #ECECEC; opacity: .8;
}
input[type="text"]::-moz-placeholder { color: #ECECEC; opacity: .8;
}
input[type="text"]:-ms-input-placeholder { color: #ECECEC; opacity: .8;
}
input[type="text"]::placeholder { color: #ECECEC; opacity: .8;
}
@media screen and (min-width: 768px) { input[type="text"] { width: 250px; height: 20px; }
}

Radiohead Album Cover VueJS - Script Codes JS Codes

new Vue({	el: "#app",	data: {	message: "",	underscore: "_",	slash: "/"	},	methods: {	randomNumber() {	return Math.floor(Math.random() * (11 - 1 + 1)) + 1;	},	addCharacter(random, character) {	return (	this.message.slice(0, random) + character + this.message.slice(random, 11)	);	}	},	computed: {	firstMessage() {	return this.addCharacter(this.randomNumber(), this.slash);	},	secondMessage() {	return this.addCharacter(this.randomNumber(), this.slash);	},	thirdMessage() {	return this.addCharacter(this.randomNumber(), this.slash);	},	fourthMessage() {	return this.addCharacter(this.randomNumber(), this.slash);	},	fifthMessage() {	return this.addCharacter(this.randomNumber(), this.slash);	},	sixthMessage() {	return this.addCharacter(this.randomNumber(), this.underscore);	},	seventhMessage() {	return this.addCharacter(this.randomNumber(), this.underscore);	}	}
});
Radiohead Album Cover VueJS - Script Codes
Radiohead Album Cover VueJS - Script Codes
Home Page Home
Developer Daniel Gonzalez
Username dan10gc
Uploaded January 03, 2023
Rating 4
Size 3,651 Kb
Views 8,096
Do you need developer help for Radiohead Album Cover VueJS?

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!

Daniel Gonzalez (dan10gc) Script Codes
Create amazing blog posts 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!