0

我的页面上有一个基于 CSS 的悬停/点击效果,效果很好。当项目 (.print) 悬停时,全彩图像 (.print_photo) 会出现在右侧。单击该项目时,图像将变为灰色并出现一个文本框 (.print_text)。

单击功能仅在您按住单击时才起作用,我希望它在单击后保持可见,直到单击另一个项目。这可能吗?

(我没有足够的声誉来发布图像,一旦我发布我会发布它)图像大小是宽度:620px;高度:490px;

CSS

#bgtextbox{
    width:320px;
    height:391px;
    background-color:#BCBEC0;
    margin:130px 0 0 0px;
    position:absolute;
    text-align:center;
    font-family:Arial, Helvetica, sans-serif;
    z-index:1;
    }

/* hover/click START */
.print{
        width:340px;
        height:40px;
        background-color:#E6E7E8;
        margin:6px 0 0 0px;
        position:relative;
        text-align:center;
        font-family:Arial, Helvetica, sans-serif;
        font-weight:bold;
        line-height:40px;
        border:1px solid #E6E7E8;
        z-index:12;
        }

.print_photo{
        width:620px;
        height:490px;
        margin:-48px 0 0 370px;
        text-align:center;
        background-repeat:no-repeat;
        position:absolute;  
        z-index:2;      
        }

.print_photo img{
            opacity:0;
            max-height:100%;
            max-width:100%;
            } 

.print_text{
            width:430px;
            height:150px;
            margin:292px 0 0 397px;
            position:absolute;
            border-radius: 20px / 20px;
            opacity:.75;
            color:transparent;
            z-index:13;
            }


.print:hover{
            border:1px solid #F15A24;
            cursor:pointer;             
            }

.print:hover ~ .print_photo img{
                            opacity:1;
                            -webkit-transition: opacity 1s ease-in-out;
                      -moz-transition: opacity 1s ease-in-out;
                      -o-transition: opacity 1s ease-in-out;
                      transition: opacity 1s ease-in-out;                                       
                            }

.print:active ~ .print_photo img{   
                        filter: grayscale(100%);
                        -webkit-filter: grayscale(100%);
                        -moz-filter: grayscale(100%);
                        -ms-filter: grayscale(100%);
                        -o-filter: grayscale(100%);
                        opacity:.5;
                        -webkit-transition: opacity 1s ease-in-out;
                      -moz-transition: opacity 1s ease-in-out;
                      -o-transition: opacity 1s ease-in-out;
                      transition: opacity 1s ease-in-out;
                        }

.print:active ~ .print_text{                            
                    background-color:#000;
                    color:#FFF;
                    }
    /* END */

HTML

<div id="bgtextbox">
  <div class="print">PRINT</div>
  <div class="print_photo"><img src="images/print.png"</div></div>
  <div class="print_text">PRINT TEXT GOES HERE</div>
</div>
4

4 回答 4

0

您将需要为此使用 JS。让一些 JS 运行 onClick 您的一个 .print 元素,它会向其中添加一个“选定”类,首先从所有其他元素中删除该类。

于 2013-06-05T19:45:13.040 回答
0

正如@DuncanLock 建议的那样,最简单的解决方案是为此使用 JS。更有创意(但基于 CSS)的方法是创建.print一个复选框。

<div id="bgtextbox">
    <div class="print">PRINT</div>
    <input type="checkbox" class="print_checkbox" />
    <div class="print_photo"><img src="images/print.png"</div></div>
    <div class="print_text">PRINT TEXT GOES HERE</div>
</div>

将其 CSS 设置为:

.print_checkbox {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    opacity:0.01;
}

所以它填满了 div 的整个区域,并且看起来是透明的。我应该向不经意的观察者指出,您还需要设置position父级 ( #bgtextbox) 的 ,但他已经在他的 CSS 中这样做了。

然后让 CSS 使用:checkedpsuedo-class 根据是否选中(单击)显示 img。只需更改此:

.print:active ~ .print_photo img

对此:

.print_checked:checked + .print_photo img

您仍然需要 IE8- 的 JS 解决方案,但无论如何您都已经需要它,使用~CSS 选择器,因此在浏览器兼容性方面没有任何区别。

只是思考的食物。这并不完全是 WYSIWYG 编码方法,但如果你是那种尽可能尝试利用 CSS 而非 JS 的开发人员(如我),这是一个很酷的小技巧。

于 2013-06-05T19:52:49.220 回答
0

您必须使用 JS 设置一个类,然后在需要时将其删除。

HTML

<div id="bgtextbox">
     <div id="print" class="print">PRINT</div>
     <div class="print_photo"><img src="images/print.png"</div></div>
     <div class="print_text">PRINT TEXT GOES HERE</div>
</div>

CSS

.printactive ~ .print_photo img{   
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    opacity:.5;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.printactive ~ .print_text{                            
    background-color:#000;
    color:#FFF;
}

JS

document.getElementById("print").addEventListener("click",activatePrintDiv);

function activatePrintDiv(){
    var pclass = this.getAttribute("class");
    this.setAttribute("class",pclass+" printactive");
}
于 2013-06-05T19:53:37.967 回答
0

为此,您将需要 Javascript。实际上有一种技术可以使用单选按钮和纯 css 来做到这一点,但由于它实际上是一种 hack,而且很脏,我将直接转向 jquery 解决方案。

您必须在现有的 css 中添加一些选择器:

.print.active  ~ .print_text, .print:active ~ .print_text {
.print.active ~ .print_photo img, .print:active ~ .print_photo img {

正如您将注意到的,样式现在不仅会在鼠标按下(:活动)时触发,而且当它包含一个类时也会触发.active

使用几行 jQuery,您可以在单击时切换该类:

// when print is clicked
$('.print').click(function() {
    // remove the old active
    $('.print.active').removeClass('active');
    // add the active class to the trigger
    $(this).addClass('active');
});

可以在这里找到一个工作示例:http: //jsfiddle.net/WRwVf/

编辑:
要在您的页面中包含此代码,您必须先加载 jQuery 库。添加这样的东西作为你身体的最后一个节点:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>

然后你可以在下面放置你的脚本。请注意,将它放在“就绪”事件中也是明智的。像这样的东西:

<script type="text/javascript">
// when the DOM is ready
$(document).ready(function() {
   /* - The above code goes here - */
});
</script>

您也可以将脚本放在一个单独的 .js 文件中,并以与 jquery 库相同的方式加载它,但由于它只是几行代码,这将被某些人认为是多余的,因为额外的 http 请求会减慢您的页面速度。

于 2013-06-05T19:56:47.157 回答