foldcontent-zhihu
用原生 js 实现知乎收起答案功能
具体实现可以看一下这篇文章 ٩(ˊᗜˋ*)و
Introduction
Demo
src/ 目录下是原生 js 写法🌰
main: dist/foldcontent.min.js
Install
- 请安装3.0.12及以上版本, version1.0.0 ~ 3.0.10 经测试存在 bug (>_<) 请已经 install 的盆友们更新一下吧
$ npm install foldcontent-zhihu@">=3.0.11" --save
Usage
方法一: Work with module bundler
HTML
<div class="foldcontent-panel">
<div class="part-content"></div>
<div class="all-content"></div>
</div>
JS
var foldcontent = require('foldcontent-zhihu');
var foldcontent_demo = new foldcontent({
'btnBg': '#eff6fa',
'btnColor': '#0c5897',
'fixBtnBg': '#81baeb',
'fixBtnColor': '#fff',
'fontSize': '12px',
'padding': '5px',
'initialText': '展开',
'fixText': '收起',
'bottom': '10px',
'right': '20px',
'lineHeight': '1'
});
方法二: 直接通过 script 标签引入 dist/目录下的 foldcontent.min.js 文件
HTML
<div class="foldcontent-panel">
<div class="part-content"></div>
<div class="all-content"></div>
</div>
<script src="foldcontent.min.js"></script>
JS
var foldcontent_demo = new foldcontent({
});
Options
{
btnBg: '#eff6fa',
btnColor: '#0c5897',
fixBtnBg: '#81baeb',
fixBtnColor: '#fff',
fontSize: '12px',
padding: '5px',
initialText: '展开',
fixText: '收起',
bottom: '10px',
right: '20px',
lineHeight: '1'
};
How to Run
$ npm install
$ npm start
http://localhost:8081/src/demo.html
LICENSE
MIT
MIT License