智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
LightingSystemApp-serial/.svn/pristine/63/634645fc2a1e72f8c261dc8d921...

37 lines
824 B

3 years ago
/**
* @file 滚动
*/
declare namespace my {
interface IPageScrollToOptions {
/**
* 滚动到页面的目标位置,单位 px。使用 my.pageScrollTo 跳转小程序顶部时,必须将 scrollTop 值设为大于 0,方可实现跳转
*/
scrollTop?: number;
/**
* 滚动动画的时长,单位ms
*/
duration?: number;
/**
* 选择器
*/
selector?: string;
/**
* 接口调用成功的回调函数
*/
success?: () => void;
/**
* 接口调用失败的回调函数
*/
fail?: () => void;
/**
* 接口调用结束的回调函数(调用成功、失败都会执行)
*/
complete?: () => void;
}
/**
* 滚动到页面的目标位置。
*/
function pageScrollTo(options: IPageScrollToOptions): void;
}