Bootstrap 轮播 500 x 500
Bootstrap Carousel 500 x 500
我是 CSS 和 HTML5 的新手,我正在使用 Bootstrap 轮播作为我正在构建的网站的模板,但我遇到了 500 x 的问题500张图,不知道怎么换,好像是JavaScript之类的,不知道有没有人能帮我指路..
这是模板:http://getbootstrap.com/examples/carousel/
下面是我要替换的图片。
以下代码段包含图片:
<img class="featurette-image img-responsive" data-src="holder.js/500x500/auto" alt="500x500" src="data:image/svg+xml" data-holder-rendered="true">
您应该将 src
值更改为图像所在的位置,而不是 data-src
。 data-src
属性用于在元素中包含不可见数据。你可以 read more about it here.
请尝试
<img class="featurette-image img-responsive" ng-src="your-image-path.png" alt="Generic placeholder image">
我是 CSS 和 HTML5 的新手,我正在使用 Bootstrap 轮播作为我正在构建的网站的模板,但我遇到了 500 x 的问题500张图,不知道怎么换,好像是JavaScript之类的,不知道有没有人能帮我指路..
这是模板:http://getbootstrap.com/examples/carousel/ 下面是我要替换的图片。
以下代码段包含图片:
<img class="featurette-image img-responsive" data-src="holder.js/500x500/auto" alt="500x500" src="data:image/svg+xml" data-holder-rendered="true">
您应该将 src
值更改为图像所在的位置,而不是 data-src
。 data-src
属性用于在元素中包含不可见数据。你可以 read more about it here.
请尝试
<img class="featurette-image img-responsive" ng-src="your-image-path.png" alt="Generic placeholder image">