mdui
Version:
a CSS Framework based on material design
25 lines (22 loc) • 551 B
text/typescript
import $ from 'mdui.jq/es/$';
import { JQ } from 'mdui.jq/es/JQ';
import 'mdui.jq/es/methods/each';
declare module 'mdui.jq/es/JQ' {
interface JQ<T = HTMLElement> {
/**
* 设置当前元素的 transform 属性
* @param transform
* @example
```js
$('.box').transform('rotate(90deg)');
```
*/
transform(transform: string): this;
}
}
$.fn.transform = function (this: JQ, transform: string): JQ {
return this.each(function () {
this.style.webkitTransform = transform;
this.style.transform = transform;
});
};