Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/photino/amazeui-magnifier

Amaze UI图片放大镜插件
https://github.com/photino/amazeui-magnifier

amazeui amazeui-plugin

Last synced: about 6 hours ago
JSON representation

Amaze UI图片放大镜插件

Awesome Lists containing this project

README

        

# Amaze UI Magnifier

- [使用示例](http://photino.github.io/amazeui-magnifier/docs/demo.html)

## 使用说明

1. 获取 Amaze UI Magnifier

- [直接下载](https://github.com/photino/amazeui-magnifier/archive/master.zip)
- 使用 NPM: `npm install amazeui-magnifier`

2. 在 Amaze UI 样式之后引入 Magnifier 样式(`dist` 目录下的 CSS):

Amaze UI Magnifier 依赖 Amaze UI 样式。

```html


```

3. 引入 Magnifier 插件(`dist` 目录下的 JS):

```html


```

4. 初始化 Magnifier:

Amaze UI Magnifier 也支持Data API。

```js
$(function() {
$('#small-image').magnify({
shape: 'rect',
width: 120
});
});
```