- 授权协议: MIT
- 开发语言: JavaScript HTML/CSS
- 操作系统: 跨平台
- 软件首页: http://carlosroso.com/notyf/
- 软件文档: https://github.com/caroso1222/notyf/blob/master/README.md
- 官方下载: https://github.com/caroso1222/notyf/archive/master.zip
软件介绍
Notyf 是一个超级简单的,响应式,原生 javascript 插件,用来显示通知。
演示
安装
安装 npm 包:
npm install --save notyf
添加至项目:
<html> <head> ... <link rel="stylesheet" type="text/css" href="/path/to/notyf.min.css"> </head> <body> ... <script src="/path/to/notyf.min.js" type="text/javascript"></script> </body> </html>
使用
//Create an instance of Notyf
var notyf = new Notyf();
//Display an alert notification
notyf.alert('You must fill out the form before moving forward');
//Display a success notification
notyf.confirm('Your changes have been successfully saved!');
C语言常用算法分析
明日科技 / 2012-1 / 39.80元
《C语言学习路线图•C语言常用算法分析》共分为4篇,第1篇为算法基础篇,包括程序之魂——算法、数据结构基础、查找与排序算法、基本算法思想等内容;第2篇为常用算法篇,包括数学算法、矩阵与数组问题、经典算法等内容;第3篇为趣味算法篇,包括数学趣题、逻辑推理题等内容;第4篇为算法竞技篇,包括计算机等级考试算法实例、程序员考试算法实例、信息学奥赛算法实例等内容。 《C语言学习路线图•C语言常用算法分......一起来看看 《C语言常用算法分析》 这本书的介绍吧!
