admin管理员组文章数量:1346332
Is there a way for an iframe to appear on hover.
This is what i have:
<div id="sub1" onmouseover="<iframe src="$('#countdown').load(' #countdown');>some text</div>
Is there a way for an iframe to appear on hover.
This is what i have:
<div id="sub1" onmouseover="<iframe src="$('#countdown').load('https://days.to/22-january/2017 #countdown');>some text</div>
Share
Improve this question
edited Nov 15, 2016 at 17:00
user5306470
asked Nov 15, 2016 at 15:43
matthew smatthew s
431 gold badge1 silver badge3 bronze badges
1
-
1
The syntax for
onmouseover
in HTML is<element onmouseover="myScript">
. Learn more about it here. – Anthony Commented Nov 15, 2016 at 16:00
2 Answers
Reset to default 7No JS/jQ needed just some CSS transitions and a :hover
pseudo-class`
SNIPPET
#ifrm1 {
opacity: 0;
transition: opacity 1.5s linear;
}
#trig1:hover + iframe {
opacity: 1;
transition: opacity 1.5s linear;
}
<a href='#/' id='trig1'>HOVER</a>
<iframe id='ifrm1' name='ifrm1' src='https://days.to/until/christmas'></iframe>
Use jQuery! Sorry for the ugly script, I'm sure you can do better :)
$('#idToHover').hover(function(){
$('#idModal').css("display", "block");
})
$('#idToHover').mouseout(function(){
$('#idModal').css("display", "none");
})
#idModal{
display: none;
}
<html>
<head>
<script
src="https://code.jquery./jquery-3.1.1.slim.js"
integrity="sha256-5i/mQ300M779N2OVDrl16lbohwXNUdzL/R2aVUXyXWA="
crossorigin="anonymous"></script>
</head>
<body>
<div id="idToHover"> Hello World </div>
<div id="idModal">
<iframe src="http://www.w3schools."></iframe>
</div>
</body>
</html>
本文标签: javascriptTrying to get iframe to appear on hoverStack Overflow
版权声明:本文标题:javascript - Trying to get iframe to appear on hover - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743829574a2546275.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论