-5

网页设计新手,现在正在为慈善机构开展一个项目,并且希望添加配置文件弹出 DIV 或窗口,最好是第一个......不知道最好的方法是什么!

任何人都可以建议。

谢谢

4

1 回答 1

0

你的问题有点模糊,但对于网页设计的初学者来说,你可能想要使用 iframe。它是一个创建内联面板/窗口的 HTML 标记,并且非常易于使用。它看起来像这样:

<iframe src="profile.html" width="300" height="300">
<p>Text here will be displayed on a browser that doesn't support iframe</p>
</iframe>

我没有和他们玩过那么多,但你可以用一点点 JQuery 来显示配置文件,如下所示:

$(document).ready(function(){
    $(".avatar").mouseenter(function(){ //The .avatar would be the element of the place where the person clicks on the profile or whatever.
        $("iframe").fadeTo("fast",1);
    });
    $("iframe").mouseleave(function(){ 
        $("iframe").fadeTo("fast",0);
    });
});

像这样的东西应该工作。我不太确定你在找什么,但我希望这会有所帮助。

有用的链接

于 2013-08-18T18:37:32.537 回答