欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

轮播时大图片居中显示,左右隐藏

程序员文章站 2022-04-18 11:31:55
...
.focus{
    position: relative;
    width:100%; 
    height: 940px;//图片高度
    .bd{ 
        width: 100%;
	height: 940px;//图片高度
	ul{
            li{
	        position: relative;
		overflow: hidden;
		width: 100%;
		height: 940px;//图片高度
		img{
		    top: 0;
		    left: 50%;
		    position: absolute;
		    margin-left: -960px;//图片宽度一半
		    width: 1920px;//图片的真实宽度
		    height: 940px;//图片的真实高度
		}
	    }
        }
    } 
}