Swiper.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. import React, { Component } from "react";
  2. import {
  3. StyleSheet,
  4. View,
  5. Image
  6. } from "react-native";
  7. import Swiper from "react-native-swiper";
  8. export default class Swipers extends Component {
  9. render() {
  10. return (
  11. <View style={styles.content}>
  12. <View style={styles.Carousel}>
  13. <Swiper style={styles.wrapper} autoplay autoplayTimeout={2}
  14. paginationStyle={{bottom: 3}}>
  15. <View style={styles.slide}>
  16. <Image
  17. source={{
  18. uri:
  19. "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1295208965,3056573814&fm=26&gp=0.jpg"
  20. }}
  21. style={styles.img}
  22. />
  23. </View>
  24. <View style={styles.slide}>
  25. <Image
  26. source={{
  27. uri:
  28. "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1295208965,3056573814&fm=26&gp=0.jpg"
  29. }}
  30. style={styles.img}
  31. />
  32. </View>
  33. </Swiper>
  34. </View>
  35. </View>
  36. );
  37. }
  38. }
  39. const styles = StyleSheet.create({
  40. content: {
  41. width: '100%',
  42. backgroundColor: "#fff",
  43. marginTop: 5,
  44. padding: 10
  45. },
  46. Carousel: {
  47. width: '100%',
  48. height: 153,
  49. borderRadius: 10,
  50. overflow: 'hidden'
  51. },
  52. wrapper: {
  53. width: '100%'
  54. },
  55. slide: {
  56. width: '100%',
  57. height: 153,
  58. justifyContent: 'center',
  59. alignItems: 'center'
  60. },
  61. img: {
  62. width: "100%",
  63. height: "100%"
  64. }
  65. });