Socket
Socket
Sign inDemoInstall

dom-text-ellipsis

Package Overview
Dependencies
1
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    dom-text-ellipsis

a text-ellipsis plugin with common js use.


Version published
Weekly downloads
3
decreased by-40%
Maintainers
1
Install size
34.4 kB
Created
Weekly downloads
 

Readme

Source

dom-text-ellipsis

a text-ellipsis plugin with common js use.

Intro

The situation when you need text ellipsis more then one line and the browser doesn't support the css style -webkit-line-clamp. This lib hasn't add the test of -webkit-line-clamp.If you are using mobile browsers, use -webkit-line-clamp instead.

Install

npm install --save-dev dom-text-ellipsis

If you are using Vue, use the package vue-text-ellipsis instead.

Usage

import ellipsis from 'dom-text-ellipsis';

ellipsis.config({
    lineNum: 2,
    fontFamily: 'microsoft yahei',
    fontWeight: 'bold',
    fontSize: '14px',
    left: '...',
    tagName: 'p',
    resize: false,
});

const ells = document.querySelectorAll('.ell');
ellipsis.init(ells);
<div class="par">
    <div class="ell" lineNum="4" text="这是一句很长很长的话,到底有多长呢 自己感受一下 够长了吧 还没感受到?那再感受下"></div>
    </br>
    <div class="ell" lineNum="4" text="这是一句很长很长的话,到底有多长呢 自己感受一下 够长了吧 还没感受到?那再感受下" resize="true"></div>
</div>

Config

You can add config when ellipsis.config to set global-config or use the attribute on vue elempent.

Property

PropsTypeDefaultEffect
widthStringThe parentsElement's offsetWidth.The max width for one line.
lineNumNumber2 (from global config)The max line.
fontFamilyStringmicrosoft yahei (from global config)The fontFamily to calculate the width.
fontSizeString| Number14px (from global config)The fontSize to calculate the width.
tagNameStringp (from global config)The tag to show the text.
leftString'…' (from global config)The String add on the end of the last line.
resizeBooleanFalse (from global config)Add the eventListener resize to window to watch the window change.

Methods

MethodArgsEffect
configObject: objUpdate the global config.
initNodeList: doms | HTMLElement: domInit the ellipsis dom by the config global and attribute both.
watchNodeList: doms | HTMLElement: dominit the ellipsis dom and watch the change of attribute.

FAQs

Last updated on 19 Dec 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc