How to make a video draggable over the video in react js

Viewed 322

Here i want localVideo to be draggable over the remoteVideo (it should not draggable out of remote video) but localVideo is not dragging. what is wrong here i don't understand

please help me thanks in advance

      <Draggable bounds="parent">   
          <video id="localVideo"  autoPlay playsInline controls={false}}/>       
      </Draggable>
      <div>
          <video id="remoteVideo" autoPlay playsInline controls={false} />  
      </div>

css:

 #localVideo{
    height:20%;
    width:55%;
    position:absolute
 }

#remoteVideo{
  width:"80%"; 
  height:"80%"
}
0 Answers
Related