在React JS中创建可拖动的球体线条
P粉448130258
P粉448130258 2023-09-07 12:26:10
0
1
504

我有一个在线上可拖动球的视频。我必须在react js 中实现该功能。球可以拖动并越过线 松开球杆后,球杆不会回到原来的位置。

我尝试了多种代码和方法,但没有一个能按需要工作。我需要帮助来在 React 中创建这样的功能,如果有人知道如何做,请帮助我。

const Ball = ({ color, onDragStart, onDragOver, onDrop }) => (
       <div
         className="ball"
         draggable
         onDragStart={onDragStart}
         onDragOver={onDragOver}
         onDrop={onDrop}
         style={{ backgroundColor: color }}
      />
     );


     import React, { useState } from 'react';
     import Ball from './Ball';

     const colors = ['red', 'blue', 'green', 'yellow'];

     const Line = () => {
     const [balls, setBalls] = useState(colors);

     const onDragStart = (e, index) => {
     e.dataTransfer.setData('index', index);
      };

      const onDragOver = (e) => {
      e.preventDefault();
      };

      const onDrop = (e, index) => {
    const droppedIndex = e.dataTransfer.getData('index');
    const newBalls = [...balls];
    newBalls.splice(droppedIndex, 1);
    newBalls.splice(index, 0, colors[droppedIndex]);
    setBalls(newBalls);
  };

  return (
    <div className="line">
      {balls.map((color, index) => (
        <Ball
          key={index}
          color={color}
          onDragStart={(e) => onDragStart(e, index)}
          onDragOver={onDragOver}
          onDrop={(e) => onDrop(e, index)}
        />
      ))}
    </div>
  );
};

此代码不起作用。

P粉448130258
P粉448130258

全部回复(1)
P粉464113078

雷雷

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板