Lorem Ipsum Generator

Developer
Size
3,057 Kb
Views
24,288

How do I make an lorem ipsum generator?

This is a jQuery plugin that generates filler text from a dictionary of words. It can be used to populate text elements with dummy content when developing and prototyping web pages.. What is a lorem ipsum generator? How do you make a lorem ipsum generator? This script and codes were developed by Lukejacksonn on 30 November 2022, Wednesday.

Lorem Ipsum Generator Previews

Lorem Ipsum Generator - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Lorem Ipsum Generator</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <link href='https://fonts.googleapis.com/css?family=Roboto:900,700,300' rel='stylesheet' type='text/css'>
<article>
<h1>Lorem.js</h1>
<button onclick="$('[data-lorem]').lorem()">GENERATE</button>
<h3>A tiny jQuery plugin that generates filler text on the fly. Perfect for filling up your codepens.</h3>
<br>
<p data-lorem="60"></p> <ul> <li data-lorem="20"></li> <li data-lorem="0"></li> </ul> <p data-lorem="150"></p>
</article> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Lorem Ipsum Generator - Script Codes CSS Codes

html, body { font-family: "Roboto", sans-serif; font-size: 14px; background: #607b8b; margin: 0; padding 0; border: 0; width: 100%; height: 100%; overflow: hidden;
}
button { position: absolute; top: 50px; right: 0; padding: 15px 30px; border: 0; background: #e00032; color: #fff; outline: none; cursor: pointer; font-weight: 900;
}
article { position: relative; max-width: calc(61.803398875ex); height: 100%; background: #fff; padding: 3.2360679775rem calc(3.2360679775rem*1.61803398875) 0; overflow: hidden;
}
p, li, a, br { line-height: 1.61803398875rem;
}
li { padding: calc(1.61803398875rem/2) 0;
}
h1 { font-size: 3.2360679775rem; line-height: calc(3.2360679775rem*1.61803398875); font-weight: 900;
}
h3 { font-size: 1.27201964951rem; line-height: calc(1.27201964951rem*1.61803398875);
}

Lorem Ipsum Generator - Script Codes JS Codes

(function($){	$.fn.lorem = function(_length) {	return this.each(function() { // Amount of words required var _length = _length || $(this).data('lorem') || (Math.floor(Math.random()*50)+3); var charAtEndOfOut = function (char,step) {	return out.indexOf(char, out.length-step-1) !== -1	} var randomWord = function () {	return words[Math.floor(Math.random() * (words.length-1))];	} var capitalize = function (word) {	return word[0].toUpperCase()+word.slice(1)	} // Dictionary of words	var paragraph = "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt. ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." , words = paragraph.split(" ") , word = "" , out = capitalize(randomWord()); for(var i = 1; i < _length; i = i+1) { //Select random word from paragraph word = randomWord(); out += " "; //Append to out, capitalize first letter if necessary out += (charAtEndOfOut('.',1) || charAtEndOfOut('?',1)) ? capitalize(word) : word.toLowerCase(); }	//Append full stop to the end of string, strip punctuation if necessary out = (charAtEndOfOut('.') || charAtEndOfOut(',') || charAtEndOfOut('?')) ? out.slice(0,-1) + "." : out + "."; $(this).text(out);	});	}	$("[data-lorem]").lorem();
})(jQuery)
Lorem Ipsum Generator - Script Codes
Lorem Ipsum Generator - Script Codes
Home Page Home
Developer Lukejacksonn
Username lukejacksonn
Uploaded November 30, 2022
Rating 3
Size 3,057 Kb
Views 24,288
Do you need developer help for Lorem Ipsum Generator?

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!

Lukejacksonn (lukejacksonn) Script Codes
Create amazing SEO content 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!