我一直在研究这个免费的模板,它非常棒,但在到达投资组合页面时,我遇到了一个问题。 HTML代码如下:
<div class="item col-md-3 col-sm-4 col-xs-6" data-groups='["photography", "web", "video"]'>
<a href="#!portfolio-item-2.html" class="hover-overlay">
<img alt="Project 2" src="images/portfolio/preview/2.jpg" />
<div class="overlay background-90-a">
<div class="hidden-xs">
<p class="title heading-a">YouTube Video</p>
<p class="text-center heading-a"><strong>Excepteur sint lorem ipsum dolor sit amet consectetur.</strong></p>
<p class="text-center"><i class="fa fa-youtube-square heading-a"></i></p>
</div>
&#13;
谈论<a ref...>
的部分是指我在模板文档中似乎找不到的HTML文件(portfolio-item-2.html)。
我该怎么办?
答案 0 :(得分:0)
您正在使用#!在href。 试试这个:
<div class="item col-md-3 col-sm-4 col-xs-6" data-groups='["photography", "web", "video"]'>
<a href="portfolio-item-2.html" class="hover-overlay">
<img alt="Project 2" src="images/portfolio/preview/2.jpg" />
<div class="overlay background-90-a">
<div class="hidden-xs">
<p class="title heading-a">YouTube Video</p>
<p class="text-center heading-a"><strong>Excepteur sint lorem ipsum dolor sit amet consectetur.</strong></p>
<p class="text-center"><i class="fa fa-youtube-square heading-a"></i></p>
</div>
Run code snippetCopy snippet to answerHide results
&#13;