Home > Article > Web Front-end > Detailed explanation of how to use the text jquery.dotdotdot.js plug-in
This article mainly introduces the detailed explanation of how to use the text overflow plug-in jquery.dotdotdot.js. Friends in need can refer to it. I hope it can help everyone.
Plug-in download address: https://github.com/FrDH/jQuery.dotdotdot
Introducing jQuery.js and jquery.dotdotdot.js
<script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="jquery.dotdotdot.js"></script>
Set a width and height for the element containing text. When the text exceeds this height, the effect will be triggered.
turns into an ellipsis:
<p class="box" style="width:300px;height:100px;"> 测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试 </p> <script type="text/javascript"> $(function(){ $(".box").dotdotdot(); }) </script>
With ellipsis and self-defined content:
<p class="box02" style="width:300px;height:100px;"> 测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试 <span style="color:#ff0000;"><a style="color: #F4606C">read more</a></span> </p> <script type="text/javascript"> $(function(){ $(".box02").dotdotdot({ after: 'a' }); }); </script>
With expand/collapse button:
<p class="box03" style="width:300px;height:100px;"> 测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试 </p> <style type="text/css"> .opened{height: auto;} .toggle .close,.opened .toggle .open{display: none;} .toggle .opened,.opened .toggle .close{display: inline;} </style> <script type="text/javascript"> var $dot = $('.box03'); $dot.append( ' <a class="toggle" href="#" rel="external nofollow" ><span class="open">[ + ]</span><span class="close">[ - ]</span></a>' ); function createDots() { $dot.dotdotdot({ after: 'a.toggle' }); } function destroyDots() { $dot.trigger( 'destroy' ); } createDots(); $dot.on( 'click', 'a.toggle', function() { $dot.toggleClass( 'opened' ); if ( $dot.hasClass( 'opened' ) ) { destroyDots(); } else { createDots(); } return false; } ); </script>
Related recommendations:
jquery plug-in canvaspercent.js implementation example sharing of percentage round cake effect
Sharing of jQuery plug-in DataTables paging development technology
Detailed explanation of jquery plug-in jquery.viewport.js
The above is the detailed content of Detailed explanation of how to use the text jquery.dotdotdot.js plug-in. For more information, please follow other related articles on the PHP Chinese website!