纯CSS图片滚动轮播
纯CSS鼠标悬停图片滚动轮播。图片数量修改方法,根据所需要展示图的数量,当前6张图每张宽度300,nav ul宽度为6*300=1800px,每张图滚动时间为2秒,2*6,animation: moving 12snav ul&n
纯CSS鼠标悬停图片滚动轮播。
图片数量修改方法,根据所需要展示图的数量,当前6张图每张宽度300,nav ul宽度为6*300=1800px,每张图滚动时间为2秒,2*6,animation: moving 12s
nav ul { width: 1800px; animation: moving 12s linear infinite alternate; }
循环x位移,6*300=1800px-300在转为负数。
@keyframes moving { form { transform: translateX(0); } to { transform: translateX(-1500px); } }下载地址
本站内容转自网络,若侵犯了你的权益,请联系我们,我们将在第一时间删除。
如若转载,请注明出处:http://www.ntuku.com/14334.html