轮播

轮播图--使用原生js的轮播图

拟墨画扇 提交于 2019-12-19 09:33:34
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>轮播图-不用jquery</title> <style> *{ padding:0; margin:0; } .view{ width: 1000px; height: 600px; margin: 0px auto; margin-top:30px; position: relative; } .view > ul{ list-style: none; width: 100%; height: 100%; transform: rotate3d(1,1,0,0deg); transform-style: preserve-3d; } .view > ul > li{ width: 20%; float: left; height: 100%; position: relative; transform-style: preserve-3d; transition: transform ; transition-duration: 0.5s; } .view > ul > li > span{ display: block; width: 100%; height: 100%; position: absolute; left: 0; top

一个好看的轮播图效果

余生长醉 提交于 2019-12-19 00:24:33
用js实现了一个好看的动态轮播图 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>swiper</title> <style type="text/css"> * { padding: 0; margin: 0; } div { border: 1px solid red; height: 350px; max-width: 750px; display: flex; position: relative; margin: auto; overflow: hidden; } div>div { width: 750px; position: absolute; border: 0px solid blue; margin: auto; } div>div:nth-child(1) { background: blueviolet; background: url(img/niubi.jpg) no-repeat; z-index: 5; } div>div:nth-child(2) { background: aqua; background: url(img/xuexi.jpg) no-repeat; z-index: 4; } div>div:nth-child(3) { background: brown

微信小程序轮播中间大两边小

蓝咒 提交于 2019-12-18 19:06:26
wxml: <!-- 轮播图 --> <view class="swiper"> <swiper autoplay="{{autoplay}}" previous-margin="{{previousMargin}}" next-margin="{{nextMargin}}" circular="true" interval="{{interval}}" duration="{{duration}}" bindchange="handleChange"> <block wx:for="{{background}}" wx:key="*this"> <swiper-item class="swiper-items"> <view class="swiper-item {{currentIndex !== index ? 'active':''}}"><image src="{{item}}"></image></view> </swiper-item> </block> </swiper> </view> js: data:{ background:[], vertical: false, autoplay: true, interval: 2000, duration: 500, previousMargin:'50rpx', nextMargin:'50rpx',

仅使用CSS完成图片轮播

三世轮回 提交于 2019-12-18 08:20:47
仅使用CSS完成图片轮播 代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style type="text/css"> img { position : absolute ; /*让四张图片重叠*/ opacity : 0 ; /*设置透明度为0*/ animation : Lunbo 12s Infinite ; /*设置动画组 Infinite为无限循环*/ } /*动画效果*/ @keyframes Lunbo { 0% { opacity : 0 } 2% { opacity : 1 } 24% { opacity : 1 } 25% { opacity : 0 } } /*图片延迟*/ img:nth-child(0) { animation-delay : 0s } img:nth-child(1) { animation-delay : 3s } img:nth-child(2) { animation-delay : 6s } img:nth-child(3) { animation-delay : 9s } </style> </head> <body> <div> <img src= "../image/1.jpg" alt= "" >

Jquery淡入淡出轮播图

﹥>﹥吖頭↗ 提交于 2019-12-18 05:24:35
Jquery淡入淡出轮播图 因为代码不多所以我就写一个html文件里了 html代码 <div class="banner">   <ul>     <li><a href="javascript:;"><img src="./1 (1).png" /></a></li>     <li><a href="javascript:;"><img src="./1 (2).png" /></a></li>     <li><a href="javascript:;"><img src="./1 (3).png" /></a></li>     <li><a href="javascript:;"><img src="./1 (4).png" /></a></li>     <li><a href="javascript:;"><img src="./1 (5).png" /></a></li>   </ul>   <div class="arrow">     <span class="arrow-l"><</span>   <span class="arrow-r">></span>   </div>   <ol>     <li class="dot"></li>     <li></li>     <li></li>     <li></li>     <li></li>   <

轮播图

空扰寡人 提交于 2019-12-18 02:04:56
效果图: 完整代码: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>轮播图</title> <style> * { margin:0; padding:0; } a{ text-decoration: none; } .container { position: relative; width: 600px; height: 400px; margin:100px auto 0 auto; box-shadow: 0 0 5px green; overflow: hidden; } .container .wrap { position: absolute; width: 4200px; height: 400px; z-index: 1; } .container .wrap img { float: left; width: 600px; height: 400px; } .container .buttons { position: absolute; right: 5px; bottom:40px; width: 150px; height: 10px; z-index: 2; } .container .buttons span { margin-left: 5px; display: inline

轮播02--上下滚动

99封情书 提交于 2019-12-18 02:00:17
<! DOCTYPE HTML > < html > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" > < title > 轮播图-上下滚动 </ title > < style > body,ul,ol { margin : 0 ; padding : 0 ;} li { list-style : none ;} img { border : none ; vertical-align : top ; } #box { width : 470px ; height : 150px ; position : relative ; margin : 30px auto ; overflow : hidden ;} ul { width : 470px ; position : absolute ; left : 0 ; top : 0 ; z-index : 1 ;} ul li { width : 470px ; height : 270px } ol { z-index : 2 ; width : 120px ; position : absolute ; right : 10px ; bottom : 10px ;} ol li { width : 20px ;

图片滑动

馋奶兔 提交于 2019-12-17 03:15:57
图片轮播是网站中的常用功能,用于在有限的网页空间内展示一组产品图片或者照片,同时还有非常吸引人的动画效果,本文向大家推荐12款实用的 jQuery 图片轮播效果插件感兴趣的朋友可以了解下哦   图片轮播是网站中的常用功能,用于在有限的网页空间内展示一组产品图片或者照片,同时还有非常吸引人的动画效果。本文向大家推荐12款实用的 jQuery 图片轮播效果插件,帮助你在你的项目中加入一些效果精美的图片轮播效果,希望这些插件能够帮助到你。 Nivo Slider 首先推荐的这款插件号称世界上最棒的图片轮播插件,有独立的 jQuery 插件和 WordPress 插件两个版本。 目前下载量已经突破 1,800,000 次!jQuery 独立版本的插件主要有如下特色: ✓ 16个独特的过渡效果✓ 简洁和有效的标记✓ 加载参数设置✓ 内置方向和导航控制✓ 压缩版本大小只有12KB✓ 支持链接图像✓ 支持 HTML 标题✓ 3套精美光滑的主题✓ 在MIT许可下免费使用✓ 支持响应式设计 插件下载 效果演示 3D Image Slider 非常非常酷的 3D 图片滑动效果,有五种绚丽的效果演示。 立体效果是基于 CSS3 实现的,请使用最新 Chrome,Firefox 和 Safari 浏览器浏览效果。 对于不支持 CSS3 的浏览器提供了优雅的降级处理,这款插件还有详细的 制作教程 。

vue简单的轮播图(适合我们这些新人)

无人久伴 提交于 2019-12-16 22:49:08
vue简单的轮播图(适合我们这些新人) < template > < div class = "wrap" > < ! -- 图片 -- > < div v - for = "(item, index) in banner" v - show = "index === indexes" : key = "index" class = "item" > < img : src = "item.img" @mouseenter = "enter()" @mouseleave = "leave()" / > < / div > < ! -- 按钮 -- > < button type = "buttom" class = "btn" id = "goPre" @click = "goPre" > < span > & lt ; < / span > < / button > < button type = "buttom" class = "btn" id = "goNecex" @click = "goNecex" > < span > & gt ; < / span > < / button > < ! -- 点点 -- > < div class = "point" > < span @click = "point(index,item.id)" v - for = "(item,

原生js写一个简单的轮播图

 ̄綄美尐妖づ 提交于 2019-12-16 22:31:06
原生js写一个简单的轮播图 很适合我们这样的前端小白 < ! DOCTYPE html > < html > < head > < meta charset = "UTF-8" > < title > 轮播图 < / title > < style > . wrap { width : 800 px ; height : 400 px ; position : relative ; margin : 0 auto ; } . list { width : 800 px ; height : 400 px ; list - style : none ; position : relative ; padding - left : 0 ; } . item { opacity : 0 ; transition : all 1 s ; /*动画效果*/ height : 100 % ; widows : 100 % ; color : white ; font - size : 50 px ; position : absolute ; } . item : nth - child ( 1 ) { width : 100 % ; background - color : red ; } . item : nth - child ( 2 ) { width : 100 % ;