网页设计的新手,我正在为一个慈善机构正在开展一个项目,我正在寻找添加配置文件弹出DIV或Windows,最好是第一... 不知道最好的办法是什么!!
任何人都可以提出建议。
谢谢
答案 0 :(得分: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);
});
});
这样的事情应该有效。我不确定你在寻找什么,但我希望这有帮助。
有用的链接