Giter Club home page Giter Club logo

small-swiper's Introduction

small-swiper

small-swiper 是一个javascript的轮播图的实现。同时支持移动端h5和PC端。当然,您也可以基于此库实现基于其它任何javascript框架的组件

small-swiper is the implementation of a JavaScript carousel graph. It supports both mobile H5 and PC. Of course, you can also implement components based on any other JavaScript framework based on this library

Routine

<script src="dist/index.min.js"></script>

ES6

npm install small-swiper --save-dev

import Swiper from "small-swiper"

Usage method

<div id="root">
	<div>
		<div><img src="img/parcel.png"/></div>
		<div><img src="img/webpack.png"/></div>
		<div><img src="img/vue.png"/></div>
		<div><img src="img/react.png"/> </div>
	</div>
</div>
<div id="btns">
	<button>To 0</button>
	<button>To 1</button>
	<button>To 2</button>
	<button>To 3</button>
</div>
  • 1.horizontal direction
#root{
	height: 500px;
	width: 100%;
	overflow: hidden;
	background: moccasin;
	img{
		align-items: center;
		display: block;
		height: 500px;
		max-width:100%;
	}
	>div{
		height: 500px;
		width: 100%;
		display: flex; 
		>div{
			flex-shrink:0;
			height:  500px;
			width: 100%;
			line-height: 500px;
			text-align: center;
			display: flex;
			justify-content: center;
		}
	}
}
window.onload = function(){
	const swiper = new Swiper({
		root:document.querySelector("#root"),
		loop:true,
		auto:false,
		delayed:2000,
		effect:"slide",
		direction:"vertical",
		index:0,
		disabledHand:false,
		callBack(index){
			console.log("html",index)
			document.title = "I am"+index+"page"
		}
	})
	const btnList = document.getElementById("btns").getElementsByTagName("button");
	
	[].slice.call(btnList).forEach((dom,i)=>{
		(function (i){
			dom.onclick = function(){
				swiper.moveTo(i)
			}
		})(i)
	})
}
  • 2.vertical direction
#root{
	height: 500px;
	width: 100%;
	overflow: hidden;
	background: moccasin;
	img{
		align-items: center;
		display: block;
		height: 500px;
		max-width:100%;
	}
	>div{
		height: 500px;
		width: 100%;
		>div{
			height:  500px;
			width: 100%;
			line-height: 500px;
			text-align: center;
			display: flex;
			justify-content: center;
		}
	}
}

window.onload = function(){
	const swiper = new Swiper({
		root:document.querySelector("#root"),
		loop:true,
		auto:false,
		delayed:2000,
		effect:"slide",
		direction:"vertical",
		index:0,
		callBack(index){
			console.log("html",index);
			document.title = "I am"+index+"page"
		}
	})
}
  • 3.Fade in and fade out
#root{
	height: 500px;
	width: 100%;
	overflow: hidden;
	img{
		display: block;
		height: 500px;
		width: 100%;
	}
	>div{
		height: 500px;
		width: 100%;
		position: relative;
		>div{
			height:  500px;
			width: 100%;
			position: relative;
			left: 0;
			top: 0;
		}
	}
}
window.onload = function(){
	const swiper = new Swiper({
		root:document.querySelector("#root"),
		effect:"fade",
		loop:false,
		auto:true,
		direction:"horizontal",
		index:0,
		callBack:function(index){
			console.log("html",index)
		}
	})
}

github地址

具体实现请看关联

关联

以此实现的vue组件

small-swiper's People

Stargazers

Stephennnnn0315 avatar Emily Thompson avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.