마우스를 올리면 iframe 페이지가 나타납니다. 나는 이것을 클릭으로 바꾸고 싶다. 어떻게 든 작동하지 않습니다.마우스를 가져 가서 클릭하십시오.
JS :
이$('section div').mouseenter(function(){
$(this).css('height', '80vh');
$(this).css('width', '100%');
$('#info').css('width', '100%');
});
$('section div').mouseleave(function(){
$(this).css('height', '2.5vh');
$(this).css('width', '100%');
$('#info').css('width', '100%');
});
CSS :
이iframe {
border: 0;
width: 100%;
height: 100%;
transition: 1s;
z-index: 2000;
}
#info {
position: fixed;
top: 0;
height: 80vh;
width: 100%;
transition: 1s;
z-index: 1;
}
section {
position: fixed;
bottom: 0;
width: 100%;
z-index: 2000;
}
HTML이 :
<body>
<section></section>
</body>
는 언젠가 내 적격 심사는하지만 iframe이 자체 (빈)에, 밖으로 일 때문에 아무 일도 일어나지 않는다 iframe에 내용이 가득 차면 대상의 문제 일뿐입니다.
어디'click' 코드입니까? – Xufox
내가 만든 클릭 코드가 전혀 작동하지 않습니다. 여기 mouseenter 및 mouseleave 대신 클릭하여 얻고 자하는 것이 있습니다 : jsfiddle.net/T73A/tsq8h6pc – 73A
작동하지 않는 코드는 질문 자체에 있어야합니다. – Xufox