Skip to content
This repository has been archived by the owner on Mar 27, 2020. It is now read-only.

Commit

Permalink
adjust README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Barrior committed Jun 16, 2017
1 parent ad62a15 commit 9cc43c9
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DDSort

一个轻简的 jQuery 拖放排序插件。
一个轻简的 `jQuery` 拖放排序插件。

##### ● 漂亮的UI展示:

Expand All @@ -12,24 +12,24 @@
1、假设 `Html` 结构如下:


<div class="wrap">
<ul>
<li>...</li>
<li>...</li>
...
</ul>
</div>
<div class="wrap">
<ul>
<li>...</li>
<li>...</li>
...
</ul>
</div>


2、依次引入 `jquery.js``ddsort.js`,然后使用 `DDSort API` 实现如图拖放排序效果:

$( '.wrap' ).DDSort({
target: 'li', // 示例而用,默认即'li'
floatStyle: { // 示例而用,默认有一定的样式
'border': '1px solid #ccc',
'background-color': '#fff'
}
});
$( '.wrap' ).DDSort({
target: 'li', // 示例而用,默认即'li'
floatStyle: { // 示例而用,默认有一定的样式
'border': '1px solid #ccc',
'background-color': '#fff'
}
});

3、如果拖放列表带有滚动条,那么 `$( '.wrap' )` 要是这个滚动条的元素。

Expand All @@ -47,7 +47,7 @@
<tr>
<td>target</td>
<td>string</td>
<td>可选,插件内部使用的是 `jQuery`的 `on` 方法绑定的事件,此参数就是 `on` 方法上的选择器字符串,默认'li'</td>
<td>可选,插件内部使用的是 jQuery 的 on 方法绑定的事件,此参数就是 on 方法上的选择器字符串,默认 li</td>
</tr>
<tr>
<td>delay</td>
Expand Down

0 comments on commit 9cc43c9

Please sign in to comment.