|
|

楼主 |
发表于 2022-1-21 10:45
|
显示全部楼层
图片是作为背景图加载的,全部帖子代码如下(为方便理解我将其分行书写并给出注释):
<style>
#wyfram { /* 网易云播放器:初始为不可见 */
position:relative;
display:none;
}
#papa { /* 父容器 */
position:relative;
left:-240px; /* 左移 - 宽幅必须 */
width:1080px;
height:757px;
background: transparent url('https://638183.freep.cn/638183/Pic/wj.jpg') no-repeat;
opacity:0.8;
}
/* 父容器滑鼠经过:令网易播放器出现 */
#papa:hover #wyfram { display:block; }
</style>
<!-- html代码 -->
<div id="papa">
<iframe id="wyfram" frameborder="no" border="0" marginwidth="0" marginheight="0" width="298" height="52" src="//music.163.com/outchain/player?type=2&id=1889838166&auto=1&height=32"></iframe>
</div>
|
|