如何解决React Js Carousel Image onclick play Video
在我的程序中,我需要在带有缩略图的轮播中制作视频。 当我点击需要播放的图像视频时。 正在存储存储在库中的视频和图像。
public render(): React.ReactElement<IDucSpfxVideoProps> {
const imageClick = (index) => {
{this.state.videoURLs.map((imageList,index) => {
return (<div>
<video width="370" height="240" controls autoplay = {false} loop muted>
return <source key={index} src={imageList} type="video/mp4"/>;
</video>
</div>)
})}
}
return (
{this.state.videoURLs.map((imageList,index) => {
return (<div>
<video width="370" height="240" controls autoplay = {false} loop muted>
return <source key={index} src={imageList} type="video/mp4"/>;
</video>
</div>)
})}
<Carousel showThumbs={true} autoplay={false} infiniteLoop={true} showIndicators={false} showStatus={true}>
{this.state.videoURLs.map((imageList,i) => {
return (<div>
<img id={i.toString()} src={imageList} onClick={imageClick}/>
</div>)
})}
</Carousel>
);
}
How to map while clicking a image in a thumbnail i need to play a video in a video source.
This is possible?
谢谢, 迪内什
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。