Playing with auto-truncation of text

Developer
Size
2,217 Kb
Views
22,264

How do I make an playing with auto-truncation of text?

What is a playing with auto-truncation of text? How do you make a playing with auto-truncation of text? This script and codes were developed by Tom on 16 September 2022, Friday.

Playing with auto-truncation of text Previews

Playing with auto-truncation of text - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Playing with auto-truncation of text</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="box">	<div class="tail"> tom rules</div>	<div class="ellipsis">This is my text it is awesome</div>
</div>
<div class="box"> <div class="ellipsis">This is my text</div>
</div> <script src="js/index.js"></script>
</body>
</html>

Playing with auto-truncation of text - Script Codes CSS Codes

body { font-family: 'Proxima Nova'; font-size: 18px;
}
.box { width: 200px; outline: 1px dotted red;
}
.tail { float: right; content: attr(data-tail);
}
.ellipsis { white-space: nowrap; text-overflow: ellipsis; overflow: hidden;
}

Playing with auto-truncation of text - Script Codes JS Codes

var NUM_CHARS = 10;
var ellipsisDivs = document.querySelectorAll(".ellipsis");
for (var i = 0; i < ellipsisDivs.length; ++i){ var e = ellipsisDivs[i]; if (e.offsetWidth < e.scrollWidth){ var text = e.textContent; // e.dataset.tail = text.slice(text.length - NUM_CHARS);	// e.style.paddingRight = (NUM_CHARS / 2) + 'em'; // FF only }
}
Playing with auto-truncation of text - Script Codes
Playing with auto-truncation of text - Script Codes
Home Page Home
Developer Tom
Username tomprogers
Uploaded September 16, 2022
Rating 3
Size 2,217 Kb
Views 22,264
Do you need developer help for Playing with auto-truncation of text?

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!

Tom (tomprogers) 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!