How to display Text-Overflow:ellipsis dots in center of the text

In this post i show you how to truncate the text in center of the sentence when overflow, when you are using the text-overflow:ellipsis it display the three dots at last of the sentence, we can't able to achieve this using pure css, So we need javascript to achieve this concept. we need to  display the dots in between the sentence.

This is one of the simple concept in jquery, Here is the example to display the truncated text using jquery. Here is the code and demos available kindly check it out. I hope this will helpful.




truncate-text-in-center



Html code for Truncate text 

<div id="wrapper">
<div class="example">
<h1>How to display Text-Overflow:ellipsis dots in center of the text</h1>
<p><strong>Truncate text using jquery</strong></p>
<div class="r">
<div class="box after pathname" id="dot5">
<div class="pathname">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vitae pretium mauris. Ut tincidunt arcu diam, in congue elit efficitur id. Nunc maximus diam et tellus tincidunt, vitae placerat lacus ullamcorper.</div>
</div>
</div>
</div>
<a href="http://www.sanwebcorner.com/"><h1>www.sanwebcorner.com</h1></a>
</div>

Css for Truncate text 

<style type="text/css" media="all">
div.r {
width: 275px;
background-color:red;
}

div.box {
border: 1px solid #ccc;
height: 40px;
padding: 15px 20px 10px 20px;
}

.pathname {
height: 25px;
color:#fff;
font-size:18px;
}
</style>

Javascript for Truncate text 

<script type="text/javascript" language="javascript">
$(function() {

$('#dot5 .pathname').each(function() {
var path = $(this).html().split( ' ' );
if ( path.length > 1 ) {
var name = path.pop();
$(this).html( path.join( ' ' ) + '<span class="filename">' + name + '</span>' );
$(this).dotdotdot({
after: '.filename',
wrap: 'letter'
});
}
});
});
</script>

Post a Comment

0 Comments