摘要:
js Component({ /** * 组件的属性列表 */ properties: { }, /** * 组件的初始数据 */ data: { deltaX: 0, // 左右滑动回弹距离 _startx: 0, // 开始的位置x _starty: 0, // 开始的位置y _endx: 0, 阅读全文
摘要:
import React from "react"; import "./style.less"; class SlideItem extends React.Component { constructor(props) { super(props); this.state = {}; } comp 阅读全文