我正在开发React js中的诸如对讲机小部件之类的聊天小部件,并且我想添加旋转木马卡组件,就像在Facebook Messenger中一样。
在移动设备上,当用户刷一张卡时,下一张卡应居中并居中;在网络上,应该有一个左右按钮,单击该按钮可显示相应的卡。
我进行了搜索,但找不到任何软件包。 我该如何实施?是新来的反应。
答案 0 :(得分:5)
作为其他答案,您在react-bootstrap和reactstrap中具有轮播组件。
就我个人而言,我觉得Reactstrap比react-bootstrap有更好的文档。您可以在他们的官方文档中找到轮播的示例。 https://reactstrap.github.io/components/carousel/
但是,这些示例没有您期望的滑动事件,而且对于Web和移动视图,我也找不到任何带有滑动事件的轮播。所以最后,我决定通过滑动事件制作自定义轮播。
对于网络,我使用了onDragStart
和onDragEnd
。对于移动视图,我使用了onTouchStart
,onTouchMove
和onTouchEnd
来检测左右滑动。
在这里更改。
//Global variables to hold the last and current X-axis positions.
var lastX = 0;
var currentX = 0;
//For web, detect swipe left and right based on mouse drag events.
handleMouse = e => {
e.persist();
let type = e.type.toLowerCase();
if (type === "dragstart") {
lastX = e.clientX;
} else {
if (lastX === 0 || e.clientX === 0 || lastX === e.clientX) {
return;
}
if (e.clientX > lastX) {
this.previous();
console.log("swife right");
} else {
this.next();
console.log("swife left");
}
}
};
//For mobile, detect swipe left and right based on touch events.
handleTouch = e => {
e.persist();
let type = e.type.toLowerCase();
if (type === "touchstart") {
lastX = e.touches[0].clientX;
}
if (type === "touchmove") {
currentX = e.touches[0].clientX;
}
if (type === "touchend") {
if (lastX === 0 || currentX === 0 || lastX === currentX) {
return;
}
if (currentX > lastX) {
this.previous();
console.log("swife right");
} else {
this.next();
console.log("swife left");
}
}
};
//Modified render.
render() {
const { activeIndex } = this.state;
const slides = items.map(item => {
return (
<CarouselItem
onExiting={this.onExiting}
onExited={this.onExited}
key={item.src}
>
<img
style={{ width: "100%" }}
src={item.src}
alt={item.altText}
onTouchStart={e => this.handleTouch(e)}
onTouchMove={e => this.handleTouch(e)}
onTouchEnd={e => this.handleTouch(e)}
onDragStart={e => this.handleMouse(e)}
onDragEnd={e => this.handleMouse(e)}
/>
</CarouselItem>
);
});
return (
<Carousel
activeIndex={activeIndex}
next={this.next}
previous={this.previous}
interval={false}
>
{slides}
<CarouselControl
direction="prev"
directionText="Previous"
onClickHandler={this.previous}
/>
<CarouselControl
direction="next"
directionText="Next"
onClickHandler={this.next}
/>
</Carousel>
);
}
}
希望它会对您有所帮助。
答案 1 :(得分:0)
答案 2 :(得分:0)
如另一个答案中所述,您可以找到一个已经构建并使用的组件。
不过,您可以使用CSS scroll snap和flexbox自己实现它。
这里有一篇文章概述了这种方法(不是在反应中,但仍然适用)。
https://developers.google.com/web/updates/2018/07/css-scroll-snap