JQUERY:
$("#container").hover(function () {
$("#innerFocusPrompt").position({
my: "center center",
at: "center center",
of: "#container"
});
$("#innerFocusPrompt").css({
"display": "inherit"
}).fadeIn(100);
});
CSS:
#container {
background-color: black;
color: #121212;
height:400px;
width:400px;
margin: 0 auto;
margin-top: 50px;
}
#innerFocusPrompt {
display: none;
background-color: red;
color: black;
height:100px;
width:100px;
}
答案 0 :(得分:2)
您正在为css
处理程序分配jQuery.position()
。
您可以将其分配给DOM,如
$("#innerFocusPrompt").css({
"display": "box"
});
答案 1 :(得分:1)
您的语法不正确。 您正在尝试将.css分配给元素的position()。
将您的代码更改为:
$("#container").hover(function () {
$("#innerFocusPrompt").position({
my: "center center",
at: "center center",
of: "#container"
});
$("#innerFocusPrompt").css({
"display": "box"
});
});