modernkernel / yii2-dotdotdot
此包已被废弃且不再维护。未建议替代包。
Yii 2 的 JQuery DotDotDot 扩展
2.0.1
2016-07-27 07:43 UTC
Requires
- npm-asset/jquery.dotdotdot: *
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2018-02-16 13:27:55 UTC
README
Yii 2 的 JQuery DotDotDot 扩展
安装
安装此扩展的首选方式是通过 composer。
运行以下命令:
php composer.phar require --prefer-dist modernkernel/yii2-dotdotdot "*"
或者添加以下内容到您的 composer.json 文件的 require
部分:
"modernkernel/yii2-dotdotdot": "*"
require
使用
扩展安装完成后,只需在您的代码中使用即可:
<?=
\modernkernel\dotdotdot\Dotdotdot::widget([
'tag'=>'p', // content tag
'content'=>'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', // your full content here
'options'=>['style'=>'height: 50px; width: 200px'], // tag options
'clientOptions'=>[] // dotdotdot configuration options, see http://dotdotdot.frebsite.nl/
])
?>