通过 jQuery 检查不透明度

发布于 2024-10-21 14:56:06 字数 43 浏览 1 评论 0原文

如何检查元素的不透明度是否为 0,然后在 jQuery 中执行某些操作?

How do I check if the opacity of an element is 0, and then do something in jQuery?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

萌梦深 2024-10-28 14:56:06

您是否尝试过使用 .css()

if($('elemFoo').css('opacity') == 0) {
    doSomething();
}

Have you tried using .css()?

if($('elemFoo').css('opacity') == 0) {
    doSomething();
}
屋顶上的小猫咪 2024-10-28 14:56:06

您可以按照

$(function() {

    if ($('#foo').css('opacity') == 0)
        alert('lol');

});

演示进行操作: http://jsfiddle.net/9GEZ5/

You can do as

$(function() {

    if ($('#foo').css('opacity') == 0)
        alert('lol');

});

Demo : http://jsfiddle.net/9GEZ5/

弥繁 2024-10-28 14:56:06
if( $("#id_of_your_thing").css('opacity') == "0" )
  do_stuffs();
if( $("#id_of_your_thing").css('opacity') == "0" )
  do_stuffs();
朱染 2024-10-28 14:56:06

要找到不透明度,请

var x = $('#test').css('opacity');
x==0 ? alert('opacity is 0') : alert('Opacity is not 0');

检查 http://jsfiddle.net/SCHNc/1/ 处的工作示例

To find opacity you do

var x = $('#test').css('opacity');
x==0 ? alert('opacity is 0') : alert('Opacity is not 0');

Check working example at http://jsfiddle.net/SCHNc/1/

貪欢 2024-10-28 14:56:06
var currentOpacity = jQuery.fx.step.opacity

if(当前不透明度 == 0)
{
   ...
var currentOpacity = jQuery.fx.step.opacity

if(currentOpacity == 0)
{
   ...
诗化ㄋ丶相逢 2024-10-28 14:56:06
jquery.support.opacity

在 jQuery 1.7.1 上似乎可以工作

jquery.support.opacity

on jQuery 1.7.1 seems to work

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文