>  기사  >  웹 프론트엔드  >  为什么同样的源代码在localhost上显示的效果和源网站上效果不一样?_html/css_WEB-ITnose

为什么同样的源代码在localhost上显示的效果和源网站上效果不一样?_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-21 09:02:481058검색

这是源网站 http://v3.bootcss.com/examples/theme/
源网站的Carousel可以正常显示,而我发布到localhost中就不能显示了。。


回复讨论(解决方案)

相关的js css 等等文件你都引入全了没?或者实现方法里面写的对不对 

n你的html 代码里面的 属性是否和demo都一样?

<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">        <ol class="carousel-indicators">          <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>          <li data-target="#carousel-example-generic" data-slide-to="1"></li>          <li data-target="#carousel-example-generic" data-slide-to="2"></li>        </ol>        <div class="carousel-inner" role="listbox">          <div class="item active">            <img data-src="holder.js/1140x500/auto/#777:#555/text:First slide" alt="First slide">          </div>          <div class="item">            <img data-src="holder.js/1140x500/auto/#666:#444/text:Second slide" alt="Second slide">          </div>          <div class="item">            <img data-src="holder.js/1140x500/auto/#555:#333/text:Third slide" alt="Third slide">          </div>        </div>        <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">          <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>          <span class="sr-only">Previous</span>        </a>        <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">          <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>          <span class="sr-only">Next</span>        </a>      </div>

n你的html 代码里面的 属性是否和demo都一样?

<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">        <ol class="carousel-indicators">          <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>          <li data-target="#carousel-example-generic" data-slide-to="1"></li>          <li data-target="#carousel-example-generic" data-slide-to="2"></li>        </ol>        <div class="carousel-inner" role="listbox">          <div class="item active">            <img data-src="holder.js/1140x500/auto/#777:#555/text:First slide" alt="First slide">          </div>          <div class="item">            <img data-src="holder.js/1140x500/auto/#666:#444/text:Second slide" alt="Second slide">          </div>          <div class="item">            <img data-src="holder.js/1140x500/auto/#555:#333/text:Third slide" alt="Third slide">          </div>        </div>        <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">          <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>          <span class="sr-only">Previous</span>        </a>        <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">          <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>          <span class="sr-only">Next</span>        </a>      </div>


我就是把原网页的所有代码原封不动的复制了进去。。。
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.