2

How to make div invisible to still able to click? display hidden or hide() will make it disappear but I want user still able to click it, as i put it on top of another object

4

3 に答える 3

7

opacityに設定できます0。不透明度は、次を使用してアニメーション化できますanimate

$('#mydiv').animate({opacity: 0});
于 2012-12-05T12:17:24.280 に答える
3

<div/>にコンテンツが含まれていない場合は、次のことができます。

#mydiv {
  background-color: transparent;
  height: 50px;
  width: 50px;
}

CSS2.1プロパティのbackground-colorを参照してください

于 2012-12-05T12:41:36.923 に答える
0

opacity:0;またはを使用したいかもしれませんvisibility:hidden;

.element {
  opacity:0;
}

また:

.element {
  visibility:hidden;
}

それがうまくいくことを願っています!幸運を!

于 2012-12-05T12:21:12.813 に答える