最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Trying to get iframe to appear on hover - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

2 Answers 2

Reset to default 7

No 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>

发布评论

评论列表(0)

  1. 暂无评论