为什么我的切换在Internet Explorer中不起作用?

时间:2017-06-20 10:38:38

标签: javascript jquery css internet-explorer

我将一个元素切换回屏幕。它工作得很好但不在资源管理器中。如何使它兼容资源管理器。你能帮忙吗?

请参阅我的示例:

JSFIDDLE

/*START makes text-over-photo div collapse and expand horizontally*/
$(document).ready(function() {
    $("#togglebutton").click(function() {
        var $container = $('#text-over-photo-container');
        $container.toggleClass('hide2');
    });
});


$('#togglebutton').click(function() {
    $(this).toggleClass('glyphicon glyphicon-remove');
    $(this).toggleClass('glyphicon glyphicon-plus');
});

1 个答案:

答案 0 :(得分:3)

尝试为transitiontransformJSFIDDLE

添加前缀

编辑:我刚刚在IE中测试了我的小提琴,并发现翻译中的计算是问题所在。 我删除了计算并添加了一个余量来均衡60px,相反,它适用于IE11:JSFIDDLE