横屏效果实现不了

来源:1-2 全屏滑动插件的CSS和HTML结构

12只怕有心人

2016-10-09 20:38

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>横屏</title>

<style type="text/css">

*{

padding: 0;

margin:0;


}

html,body{

height: 100%;

/*overflow: hidden;*/


}

#container,.sections,.section{

height: 100%;


}

/*使背景图始终位于屏幕中心*/

#section0,

#section1,

#section2,

#section3{

background-color: #000;

background-size: cover;

background-position: 50% 50%;

text-align: center;

color: white;

}


#section0{

background-image: url(img/0.jpg);

}

#section1{

background-image: url(img/01.jpg);

}

#section2{

background-image: url(img/02.jpg);

}

#section3{

background-image: url(img/03.jpg);

}

.left{

float: left;

width: 25%;


}

</style>

</head>

<body>

<div id="container" style="width:400%">

<div class="sections left">

<div class="section left" id="section0"><h3>This is a page</h3></div>

<div class="section left" id="section1"><h3>This is a page</h3></div>

<div class="section left" id="section2"><h3>This is a page</h3></div>

<div class="section left" id="section3"><h3>This is a page</h3></div>

</div>

</div>

</body>

</html>

效果就是这样

http://img.mukewang.com/57fa39eb000147c413650449.jpg

往右拉动白色滚动条就是空白了,求解

写回答 关注

1回答

  • bannerl
    2016-10-10 11:36:50
    已采纳

    容器不需要加类名是left,最上面的left删掉

    12只怕有心...

    非常感谢!

    2016-10-10 19:42:43

    共 1 条回复 >

全屏切换效果

如何在PC和移动端实现全屏切换效果,本课程会给你答案

85463 学习 · 154 问题

查看课程

相似问题