+5

Một vài thư viện javascript hữu ích

1.Linkfy

  • Linkify là một plugin JavaScript để tìm các liên kết ở dạng văn bản thuần túy và chuyển đổi chúng thành các thẻ HTML <a>.

  • Nó hoạt động với tất cả các URL và địa chỉ email hợp lệ.

  • Nó có độ chính xác, tốc độ cao và dễ sử dụng.

Cài đặt.

Tải xuống bản mới nhất hoặc cài đặt thông qua NPM

npm install linkifyjs

hoặc Bower.

bower install linkifyjs

hoặc sử dụng link cdn.

<script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery-linkify/2.1.6/linkify.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery-linkify/2.1.6/linkify-jquery.min.js"></script>

Quick Start

Để sử dụng linkfy thì cần phải import thư viện jquery. Thêm linkify và linkify-jquery vào HTML của bạn sau jQuery.

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery-linkify/2.1.6/linkify.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery-linkify/2.1.6/linkify-jquery.min.js"></script>

Tìm tất cả các liên kết và chuyển đổi chúng thành các thẻ liên kết

Ví dụ: Chuyển tất cả các liên kết trong thẻ p thành các thẻ liên kết.

<p>
    Truy cập trang cá nhân https://viblo.asia/u/thanhnn
</p>

Thêm javascript.

$('p').linkify();

Kết quả.

Tìm tất cả các liên kết trong chuỗi đã cho

linkify.find('Any links to github.com here? If not, contact test@example.com');

Kết quả trả về là 1 mảng.

[
  {
    type: 'url',
    value: 'github.com',
    href: 'http://github.com'
  },
  {
    type: 'email',
    value: 'test@example.com',
    href: 'mailto:test@example.com'
  }
]

2.Keymaster

Keymaster là một thư viện đơn giản tạo các phím tắt trong các ứng dụng web của bạn.

Cài đặt.

Cài đặt thông qua NPM

npm install keymaster

hoặc Bower.

bower install keymaster

hoặc sử dụng link cdn.

<script src="https://cdn.jsdelivr.net/keymaster.js/1.6.1/keymaster.js"></script>

hoặc file min

<script src="https://cdn.jsdelivr.net/keymaster.js/1.6.1/keymaster.min.js"></script>

Quick Start

Keymaster có thể hoạt động độc lập, không phụ thuộc vào các thư viện khác, vì vậy không cần import jquery. Thêm keymaster.min.js vào HTML của bạn sau jQuery.

<script src="https://cdn.jsdelivr.net/keymaster.js/1.6.1/keymaster.min.js"></script>

Định nghĩa các phim tắt

Sử dụng hàm key.

// define short of 'a'
key('a', function () {
    alert('you pressed a!')
});

// returning false stops the event and prevents default browser events
key('ctrl+r', function () {
    alert('stopped reload!');
    
    return false
});

// multiple shortcuts that do the same thing
key('⌘+r, ctrl+r', function () {
    // do somethings
});

Các phím được hỗ trợ

  • Các phím đặc biệt sau đây có thể được sử dụng cho các phím tắt: backspace, tab, clear, enter, return, esc, escape, space, up, down, left, right, home, end, pageup, pagedown, del, deletef1 đến f19.

Ngoài ra còn có 1 số tiện ích khác bạn có thể tìm hiểu thêm tại https://github.com/madrobby/keymaster

3.Sortable

Sortable là một thư viện JavaScript dùng để kéo và thả các phần tử trên trang web. Không cần phải có jQuery.

Cài đặt.

Cài đặt thông qua NPM

npm install sortablejs --save

hoặc Bower.

bower install --save sortablejs

hoặc sử dụng link cdn.

<script src="https://cdnjs.cloudflare.com/ajax/libs/Sortable/1.6.0/Sortable.js"></script>

hoặc file min

<script src="https://cdnjs.cloudflare.com/ajax/libs/Sortable/1.6.0/Sortable.min.js"></script>

Usage

<ul id="items">
	<li>item 1</li>
	<li>item 2</li>
	<li>item 3</li>
</ul>
var el = document.getElementById('items');
var sortable = Sortable.create(el);

Ngoài <ul>/<ol> thì bạn củng có thể sử dụng cho thẻ div, ..v..v..

Các tùy chọn

var sortable = new Sortable(el, {
	group: "name",  // or { name: "...", pull: [true, false, clone], put: [true, false, array] }
	sort: true,  // sorting inside list
	delay: 0, // time in milliseconds to define when the sorting should start
	touchStartThreshold: 0, // px, how many pixels the point should move before cancelling a delayed drag event
	disabled: false, // Disables the sortable if set to true.
	store: null,  // @see Store
	animation: 150,  // ms, animation speed moving items when sorting, `0` — without animation
	handle: ".my-handle",  // Drag handle selector within list items
	filter: ".ignore-elements",  // Selectors that do not lead to dragging (String or Function)
	preventOnFilter: true, // Call `event.preventDefault()` when triggered `filter`
	draggable: ".item",  // Specifies which items inside the element should be draggable
	ghostClass: "sortable-ghost",  // Class name for the drop placeholder
	chosenClass: "sortable-chosen",  // Class name for the chosen item
	dragClass: "sortable-drag",  // Class name for the dragging item
	dataIdAttr: 'data-id',

	forceFallback: false,  // ignore the HTML5 DnD behaviour and force the fallback to kick in

	fallbackClass: "sortable-fallback",  // Class name for the cloned DOM Element when using forceFallback
	fallbackOnBody: false,  // Appends the cloned DOM Element into the Document's Body
	fallbackTolerance: 0, // Specify in pixels how far the mouse should move before it's considered as a drag.

	scroll: true, // or HTMLElement
	scrollFn: function(offsetX, offsetY, originalEvent, touchEvt, hoverTargetEl) { ... }, // if you have custom scrollbar scrollFn may be used for autoscrolling
	scrollSensitivity: 30, // px, how near the mouse must be to an edge to start scrolling.
	scrollSpeed: 10, // px

	setData: function (/** DataTransfer */dataTransfer, /** HTMLElement*/dragEl) {
		dataTransfer.setData('Text', dragEl.textContent); // `dataTransfer` object of HTML5 DragEvent
	},

	// Element is chosen
	onChoose: function (/**Event*/evt) {
		evt.oldIndex;  // element index within parent
	},

	// Element dragging started
	onStart: function (/**Event*/evt) {
		evt.oldIndex;  // element index within parent
	},

	// Element dragging ended
	onEnd: function (/**Event*/evt) {
		var itemEl = evt.item;  // dragged HTMLElement
		evt.to;    // target list
		evt.from;  // previous list
		evt.oldIndex;  // element's old index within old parent
		evt.newIndex;  // element's new index within new parent
	},

	// Element is dropped into the list from another list
	onAdd: function (/**Event*/evt) {
		// same properties as onEnd
	},

	// Changed sorting within list
	onUpdate: function (/**Event*/evt) {
		// same properties as onEnd
	},

	// Called by any change to the list (add / update / remove)
	onSort: function (/**Event*/evt) {
		// same properties as onEnd
	},

	// Element is removed from the list into another list
	onRemove: function (/**Event*/evt) {
		// same properties as onEnd
	},

	// Attempt to drag a filtered element
	onFilter: function (/**Event*/evt) {
		var itemEl = evt.item;  // HTMLElement receiving the `mousedown|tapstart` event.
	},

	// Event when you move an item in the list or between lists
	onMove: function (/**Event*/evt, /**Event*/originalEvent) {
		// Example: http://jsbin.com/tuyafe/1/edit?js,output
		evt.dragged; // dragged HTMLElement
		evt.draggedRect; // TextRectangle {left, top, right и bottom}
		evt.related; // HTMLElement on which have guided
		evt.relatedRect; // TextRectangle
		originalEvent.clientY; // mouse position
		// return false; — for cancel
	},

	// Called when creating a clone of element
	onClone: function (/**Event*/evt) {
		var origEl = evt.item;
		var cloneEl = evt.clone;
	}
});

Group option

Sort option

Delay option

TouchStartThreshold option

  • Tùy chọn này tương tự như tùy chọn fallbackTolerance.
  • Dùng để tùy chọn độ trẻ khi kéo thả.

Disabled options

Handle option

GhostClass

Các bạn có thể xem thêm 1 số option tại https://github.com/RubaXa/Sortable#options


All rights reserved

Viblo
Hãy đăng ký một tài khoản Viblo để nhận được nhiều bài viết thú vị hơn.
Đăng kí