React JS でドラッグ可能な球線を作成する
P粉448130258
P粉448130258 2023-09-07 12:26:10
0
1
417

ドラッグ可能なボールのビデオがオンラインにあります。この機能をreact jsで実装する必要があります。ボールをドラッグしてラインを越えることができます クラブを放すとクラブは元の位置には戻りません。

複数のコードとメソッドを試しましたが、どれも期待通りに機能しませんでした。 React でこのような機能を作成するのに助けが必要です。誰かがその方法を知っていれば助けてください。

リーリー

このコードは機能しません。

P粉448130258
P粉448130258

全員に返信 (1)
P粉464113078
const Ball = ({ color, onDragStart, onDragOver, onDrop }) => ( 
); 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 (
{balls.map((color, index) => ( onDragStart(e, index)} onDragOver={onDragOver} onDrop={(e) => onDrop(e, index)} /> ))}
); };
いいねを押す+0
    最新のダウンロード
    詳細>
    ウェブエフェクト
    公式サイト
    サイト素材
    フロントエンドテンプレート
    私たちについて 免責事項 Sitemap
    PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!