瀏覽代碼

小优化

liumingyi_1 5 年之前
父節點
當前提交
0bc2ac5221
共有 2 個文件被更改,包括 1 次插入3 次删除
  1. 1 1
      example/src/App.tsx
  2. 0 2
      src/PhotoSlider.tsx

+ 1 - 1
example/src/App.tsx

@@ -43,7 +43,7 @@ class App extends React.Component {
           <ImageList>
             {photoImages.map((item, index) => (
               <PhotoConsumer key={index} src={item} intro={item}>
-                <SmallImage />
+                {index < 2 ? <SmallImage src={item} /> : undefined}
               </PhotoConsumer>
             ))}
           </ImageList>

+ 0 - 2
src/PhotoSlider.tsx

@@ -89,8 +89,6 @@ export default class PhotoSlider extends React.Component<
       canPullClose: true,
     };
     this.handleResize = debounce(this.handleResize, 32);
-    // 避免事件穿透
-    this.handlePhotoMaskTap = debounce(this.handlePhotoMaskTap, 200);
   }
 
   componentDidMount() {