【问题标题】:I want to switch to another page after clicking on the pic in codeigniter, how i can do it?在codeigniter中点击图片后我想切换到另一个页面,我该怎么做?
【发布时间】:2016-07-12 12:25:50
【问题描述】:
<div class="col-lg-4 col-sm-6">
            <a href="#" class="portfolio-box">
               <img src="img/portfolio/1.jpg" class="img-responsive" alt="">
                    <div class="portfolio-box-caption">
                        <div class="portfolio-box-caption-content">
                            <div class="project-category text-faded">
                                Category:-
                            </div>
                            <div class="project-name">
                                Mobile
                            </div>
                        </div>
                    </div>
                </a>
            </div>

//1.jpg 图像出现在视图中,单击此图像后我想切换到另一个视图。

【问题讨论】:

  • 我通过实现 得到了解决方案

标签: php html css codeigniter web


【解决方案1】:

您可以使用 css 实现此目的:

#my-div{
background-color: #000;
width: 200px;
height: 200px } 
a.fill-div {
display: block;
height: 100%;
width: 100%;
text-decoration: none}


<div class="col-lg-4 col-sm-6" id="my-div">
        <a href="#" class="portfolio-box"> </a>
          the rest of it.
        </div>

【讨论】:

    猜你喜欢
    • 2022-12-04
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-10-24
    • 1970-01-01
    • 2023-02-03
    • 2022-01-24
    • 1970-01-01
    相关资源
    最近更新 更多