jQuery animate backgroundColor


327

ฉันพยายามทำให้เคลื่อนไหวใน backgroundColor โดยใช้ jQuery บน mouseover

ฉันตรวจสอบตัวอย่างแล้วและดูเหมือนว่าถูกต้องมันใช้งานได้กับคุณสมบัติอื่น ๆ เช่น fontSize แต่ด้วย backgroundColor ฉันได้รับและข้อผิดพลาด "คุณสมบัติไม่ถูกต้อง" js องค์ประกอบที่ฉันกำลังทำงานคือ div

$(".usercontent").mouseover(function() {
    $(this).animate({ backgroundColor: "olive" }, "slow");
});

ความคิดใด ๆ


สำหรับ jQuery 1.4.2 ที่มี jquery effect 1.8 ฉันต้องยอมรับว่า Andrew solution ทำงานได้สมบูรณ์แบบ ดูโพสต์ของเขาด้านล่าง
Patrick Desjardins

1
หมายเหตุ: ปลั๊กอินนี้กำลังตรวจจับสีพื้นหลังปัจจุบันขององค์ประกอบเบราว์เซอร์ Chrome กลับมาrgba(0, 0, 0, 0)แทนค่าว่าง / null ที่คาดไว้เมื่อไม่มีการกำหนดสีพื้นหลัง ในการ "แก้ไข" สิ่งนี้องค์ประกอบต้องมีสีพื้นหลังเริ่มต้น
Shadow Wizard คือ Ear For You

หน้าเชื่อมโยงดูเหมือนว่าจะเสียหาย (อย่างน้อยหน้าโครงการและหน้าตัวอย่าง)
เปาโลสเตฟาน

คำตอบ:


333

ปลั๊กอินสีมีราคาถูกกว่าเพียงแค่ 4kb เท่านั้นกว่าไลบรารี UI แน่นอนว่าคุณจะต้องใช้ปลั๊กอินรุ่นที่เหมาะสมและไม่ใช่ของเก่าแบบบั๊กกี้ซึ่งไม่สามารถจัดการกับ Safari และหยุดทำงานเมื่อการเปลี่ยนผ่านเร็วเกินไป เนื่องจากรุ่นที่ย่อเล็กสุดไม่ได้ให้มาคุณอาจต้องการทดสอบคอมเพรสเซอร์ต่างๆและสร้างเวอร์ชั่นขั้นต่ำของคุณเอง YUI ได้รับการบีบอัดที่ดีที่สุดในกรณีนี้ต้องการเพียง 2317 ไบต์และเนื่องจากมันมีขนาดเล็กมาก - นี่คือ:

(function (d) {
    d.each(["backgroundColor", "borderBottomColor", "borderLeftColor", "borderRightColor", "borderTopColor", "color", "outlineColor"], function (f, e) {
        d.fx.step[e] = function (g) {
            if (!g.colorInit) {
                g.start = c(g.elem, e);
                g.end = b(g.end);
                g.colorInit = true
            }
            g.elem.style[e] = "rgb(" + [Math.max(Math.min(parseInt((g.pos * (g.end[0] - g.start[0])) + g.start[0]), 255), 0), Math.max(Math.min(parseInt((g.pos * (g.end[1] - g.start[1])) + g.start[1]), 255), 0), Math.max(Math.min(parseInt((g.pos * (g.end[2] - g.start[2])) + g.start[2]), 255), 0)].join(",") + ")"
        }
    });

    function b(f) {
        var e;
        if (f && f.constructor == Array && f.length == 3) {
            return f
        }
        if (e = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(f)) {
            return [parseInt(e[1]), parseInt(e[2]), parseInt(e[3])]
        }
        if (e = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(f)) {
            return [parseFloat(e[1]) * 2.55, parseFloat(e[2]) * 2.55, parseFloat(e[3]) * 2.55]
        }
        if (e = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(f)) {
            return [parseInt(e[1], 16), parseInt(e[2], 16), parseInt(e[3], 16)]
        }
        if (e = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(f)) {
            return [parseInt(e[1] + e[1], 16), parseInt(e[2] + e[2], 16), parseInt(e[3] + e[3], 16)]
        }
        if (e = /rgba\(0, 0, 0, 0\)/.exec(f)) {
            return a.transparent
        }
        return a[d.trim(f).toLowerCase()]
    }
    function c(g, e) {
        var f;
        do {
            f = d.css(g, e);
            if (f != "" && f != "transparent" || d.nodeName(g, "body")) {
                break
            }
            e = "backgroundColor"
        } while (g = g.parentNode);
        return b(f)
    }
    var a = {
        aqua: [0, 255, 255],
        azure: [240, 255, 255],
        beige: [245, 245, 220],
        black: [0, 0, 0],
        blue: [0, 0, 255],
        brown: [165, 42, 42],
        cyan: [0, 255, 255],
        darkblue: [0, 0, 139],
        darkcyan: [0, 139, 139],
        darkgrey: [169, 169, 169],
        darkgreen: [0, 100, 0],
        darkkhaki: [189, 183, 107],
        darkmagenta: [139, 0, 139],
        darkolivegreen: [85, 107, 47],
        darkorange: [255, 140, 0],
        darkorchid: [153, 50, 204],
        darkred: [139, 0, 0],
        darksalmon: [233, 150, 122],
        darkviolet: [148, 0, 211],
        fuchsia: [255, 0, 255],
        gold: [255, 215, 0],
        green: [0, 128, 0],
        indigo: [75, 0, 130],
        khaki: [240, 230, 140],
        lightblue: [173, 216, 230],
        lightcyan: [224, 255, 255],
        lightgreen: [144, 238, 144],
        lightgrey: [211, 211, 211],
        lightpink: [255, 182, 193],
        lightyellow: [255, 255, 224],
        lime: [0, 255, 0],
        magenta: [255, 0, 255],
        maroon: [128, 0, 0],
        navy: [0, 0, 128],
        olive: [128, 128, 0],
        orange: [255, 165, 0],
        pink: [255, 192, 203],
        purple: [128, 0, 128],
        violet: [128, 0, 128],
        red: [255, 0, 0],
        silver: [192, 192, 192],
        white: [255, 255, 255],
        yellow: [255, 255, 0],
        transparent: [255, 255, 255]
    }
})(jQuery);

2
เอาล่ะไปที่ลิงก์ที่ Andrew เสนอ ดาวน์โหลดไฟล์ คุณต้องเพิ่มลงในโครงการของคุณ คุณยังสามารถมี jquery.effects.core ในโครงการของคุณได้อย่างสมบูรณ์แบบ ขอบคุณสำหรับคำตอบ +1
Patrick Desjardins

3
ฉันเพียงแค่วางข้างต้นลงในไฟล์ 'jquery-ui-1.8.2.min.js' ที่มีอยู่ของฉันและ ... ทุกอย่างยังคงทำงาน :-)
Dave Everitt

7
ฉันต้องการที่จะทราบว่าในปีที่ผ่านมา (2011) ผู้เขียนปลั๊กอินนี้เปิดตัวรุ่นที่ 2 ซึ่งมีคุณสมบัติที่ดีมากมายในนั้น แต่ไม่จำเป็นสำหรับฟังก์ชั่นพื้นฐาน lib นี้มักจะขอหลังจาก ตอนนี้มันใหญ่กว่า 20 + kb คุณสามารถเลือกv1สาขาเพื่อรับเวอร์ชันเก่า (ซึ่งยังใช้งานได้) แต่มีน้ำหนักเบากว่ามาก
Aren

6
FWIW - คุณสามารถเอาแมปสีต่อ RGB ในรหัสและลดขนาดต่อไป: raw.github.com/gist/1891361/... ข้อเสียคือคุณไม่สามารถใช้ชื่อสีสำหรับภาพเคลื่อนไหว คุณจะต้องใช้ค่า rgb
Niyaz

4
jQuery 1.8 แบ่งปลั๊กอินนี้เป็น btw curCSS ไม่ได้อยู่ใน jQuery อีกต่อไป
แบรดชอว์รวย

68

ฉันมีปัญหาเดียวกันและแก้ไขได้โดยรวม jQuery UI นี่คือสคริปต์ที่สมบูรณ์:

<!-- include Google's AJAX API loader -->
<script src="http://www.google.com/jsapi"></script>
<!-- load JQuery and UI from Google (need to use UI to animate colors) -->
<script type="text/javascript">
google.load("jqueryui", "1.5.2");
</script>


<script type="text/javascript">
$(document).ready(function() {
$('#menu ul li.item').hover(
    function() {
        $(this).stop().animate({backgroundColor:'#4E1402'}, 300);
        }, function () {
        $(this).stop().animate({backgroundColor:'#943D20'}, 100);
    });
});
</script>

61

ทำด้วย CSS3-Transitions การสนับสนุนเป็นสิ่งที่ดี (เบราว์เซอร์ที่ทันสมัยทั้งหมดแม้แต่ IE) ด้วย Compass และ SASS สิ่งนี้จะเสร็จสิ้นอย่างรวดเร็ว:

#foo {background:red; @include transition(background 1s)}
#foo:hover {background:yellow}

CSS บริสุทธิ์:

#foo {
background:red;
-webkit-transition:background 1s;
-moz-transition:background 1s;
-o-transition:background 1s;
transition:background 1s
}
#foo:hover {background:yellow}

ฉันเขียนบทความภาษาเยอรมันเกี่ยวกับหัวข้อนี้: http://www.solife.cc/blog/animation-farben-css3-transition.html


6
เล่นซอกับโฮเวอร์และคลิกช่วงการเปลี่ยนภาพได้ที่: jsfiddle.net/K5Qyx
Dem Pilafian

30

Bitstorm มีปลั๊กอินภาพเคลื่อนไหวสี jquery ที่ดีที่สุดที่ฉันเคยเห็น เป็นการปรับปรุงโครงการสี jquery นอกจากนี้ยังสนับสนุน rgba

http://www.bitstorm.org/jquery/color-animation/


1
ฉันไม่สามารถขอบคุณมากพอสำหรับการระบุว่ามันรองรับ 'rgba' ซึ่งเป็นสิ่งที่ฉันกำลังมองหา
Onimusha

13

คุณสามารถใช้ jQuery UI เพื่อเพิ่มฟังก์ชั่นนี้ คุณสามารถคว้าสิ่งที่คุณต้องการได้ดังนั้นหากคุณต้องการทำให้สีมีชีวิตชีวาสิ่งที่คุณต้องรวมคือรหัสต่อไปนี้ ฉันได้รับจาก jQuery UI ล่าสุด (ปัจจุบัน 1.8.14)

/******************************************************************************/
/****************************** COLOR ANIMATIONS ******************************/
/******************************************************************************/

// override the animation for color styles
$.each(['backgroundColor', 'borderBottomColor', 'borderLeftColor',
    'borderRightColor', 'borderTopColor', 'borderColor', 'color', 'outlineColor'],
function(i, attr) {
    $.fx.step[attr] = function(fx) {
        if (!fx.colorInit) {
            fx.start = getColor(fx.elem, attr);
            fx.end = getRGB(fx.end);
            fx.colorInit = true;
        }

        fx.elem.style[attr] = 'rgb(' +
            Math.max(Math.min(parseInt((fx.pos * (fx.end[0] - fx.start[0])) + fx.start[0], 10), 255), 0) + ',' +
            Math.max(Math.min(parseInt((fx.pos * (fx.end[1] - fx.start[1])) + fx.start[1], 10), 255), 0) + ',' +
            Math.max(Math.min(parseInt((fx.pos * (fx.end[2] - fx.start[2])) + fx.start[2], 10), 255), 0) + ')';
    };
});

// Color Conversion functions from highlightFade
// By Blair Mitchelmore
// http://jquery.offput.ca/highlightFade/

// Parse strings looking for color tuples [255,255,255]
function getRGB(color) {
        var result;

        // Check if we're already dealing with an array of colors
        if ( color && color.constructor == Array && color.length == 3 )
                return color;

        // Look for rgb(num,num,num)
        if (result = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color))
                return [parseInt(result[1],10), parseInt(result[2],10), parseInt(result[3],10)];

        // Look for rgb(num%,num%,num%)
        if (result = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color))
                return [parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55];

        // Look for #a0b1c2
        if (result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color))
                return [parseInt(result[1],16), parseInt(result[2],16), parseInt(result[3],16)];

        // Look for #fff
        if (result = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color))
                return [parseInt(result[1]+result[1],16), parseInt(result[2]+result[2],16), parseInt(result[3]+result[3],16)];

        // Look for rgba(0, 0, 0, 0) == transparent in Safari 3
        if (result = /rgba\(0, 0, 0, 0\)/.exec(color))
                return colors['transparent'];

        // Otherwise, we're most likely dealing with a named color
        return colors[$.trim(color).toLowerCase()];
}

function getColor(elem, attr) {
        var color;

        do {
                color = $.curCSS(elem, attr);

                // Keep going until we find an element that has color, or we hit the body
                if ( color != '' && color != 'transparent' || $.nodeName(elem, "body") )
                        break;

                attr = "backgroundColor";
        } while ( elem = elem.parentNode );

        return getRGB(color);
};

เพียง 1.43kb หลังจากบีบอัดด้วย YUI:

$.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","borderColor","color","outlineColor"],function(b,a){$.fx.step[a]=function(c){if(!c.colorInit){c.start=getColor(c.elem,a);c.end=getRGB(c.end);c.colorInit=true}c.elem.style[a]="rgb("+Math.max(Math.min(parseInt((c.pos*(c.end[0]-c.start[0]))+c.start[0],10),255),0)+","+Math.max(Math.min(parseInt((c.pos*(c.end[1]-c.start[1]))+c.start[1],10),255),0)+","+Math.max(Math.min(parseInt((c.pos*(c.end[2]-c.start[2]))+c.start[2],10),255),0)+")"}});function getRGB(b){var a;if(b&&b.constructor==Array&&b.length==3){return b}if(a=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(b)){return[parseInt(a[1],10),parseInt(a[2],10),parseInt(a[3],10)]}if(a=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(b)){return[parseFloat(a[1])*2.55,parseFloat(a[2])*2.55,parseFloat(a[3])*2.55]}if(a=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(b)){return[parseInt(a[1],16),parseInt(a[2],16),parseInt(a[3],16)]}if(a=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(b)){return[parseInt(a[1]+a[1],16),parseInt(a[2]+a[2],16),parseInt(a[3]+a[3],16)]}if(a=/rgba\(0, 0, 0, 0\)/.exec(b)){return colors.transparent}return colors[$.trim(b).toLowerCase()]}function getColor(c,a){var b;do{b=$.curCSS(c,a);if(b!=""&&b!="transparent"||$.nodeName(c,"body")){break}a="backgroundColor"}while(c=c.parentNode);return getRGB(b)};

คุณสามารถทำให้สีเคลื่อนไหวโดยใช้การเปลี่ยน CSS3 แต่รองรับเฉพาะเบราว์เซอร์สมัยใหม่เท่านั้น

a.test {
  color: red;
  -moz-transition-property: color;  /* FF4+ */
  -moz-transition-duration: 1s;
  -webkit-transition-property: color;  /* Saf3.2+, Chrome */
  -webkit-transition-duration: 1s;
  -o-transition-property: color;  /* Opera 10.5+ */
  -o-transition-duration: 1s;
  -ms-transition-property: color;  /* IE10? */
  -ms-transition-duration: 1s;
  transition-property: color;  /* Standard */
  transition-duration: 1s;
  }

  a.test:hover {
  color: blue;
  }

ใช้คุณสมบัติชวเลข:

/* shorthand notation for transition properties */
/* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */

a.test {
  color: red;
  -moz-transition: color 1s;
  -webkit-transition: color 1s;
  -o-transition: color 1s;
  -ms-transition: color 1s;
  transition: color 1s;
  }

a.test {
  color: blue;
 }

ซึ่งแตกต่างจากการเปลี่ยน javascript ปกติการเปลี่ยน CSS3 เป็นฮาร์ดแวร์ที่เร่งความเร็วและเรียบเนียนกว่า คุณสามารถใช้ Modernizr เพื่อตรวจสอบว่าเบราว์เซอร์รองรับการเปลี่ยน CSS3 หรือไม่ถ้าไม่ใช่คุณสามารถใช้ jQuery เป็นทางเลือก:

if ( !cssTransitions() ) {
    $(document).ready(function(){
        $(".test").hover(function () {
                $(this).stop().animate({ backgroundColor: "red" },500)
             }, function() {
                 $(this).stop().animate({ backgroundColor: "blue" },500)}    
             );
    }); 
}

อย่าลืมใช้ stop () เพื่อหยุดภาพเคลื่อนไหวปัจจุบันก่อนที่จะเริ่มสร้างภาพใหม่มิฉะนั้นเมื่อคุณผ่านองค์ประกอบเร็วเกินไปเอฟเฟกต์จะกะพริบชั่วขณะหนึ่ง


11

สำหรับใครก็ตามที่พบสิ่งนี้ คุณควรใช้ jQuery UI เวอร์ชั่นที่ดีกว่าเพราะมันใช้ได้กับทุกเบราว์เซอร์ ปลั๊กอินสีมีปัญหากับ Safari และ Chrome มันใช้งานได้บางครั้งเท่านั้น


6
-1 ปลั๊กอินสีเวอร์ชันล่าสุดทำงานได้อย่างสมบูรณ์แบบใน Chrome
แอนดรู

3
มันยากที่จะรวมสคริปต์เพิ่มเติมลงในพื้นหลังแบบเคลื่อนไหว
oneiros

11

คุณสามารถใช้ 2 divs:

คุณสามารถวางโคลนไว้ด้านบนแล้วค่อยลอกแบบเดิมออกมาได้ในขณะที่ทำการลอกแบบโคลน

เมื่อจางหายไปให้คืนค่าต้นฉบับด้วย bg ใหม่

$(function(){
    var $mytd = $('#mytd'), $elie = $mytd.clone(), os = $mytd.offset();

      // Create clone w other bg and position it on original
    $elie.toggleClass("class1, class2").appendTo("body")
         .offset({top: os.top, left: os.left}).hide();

    $mytd.mouseover(function() {            
          // Fade original
        $mytd.fadeOut(3000, function() {
            $mytd.toggleClass("class1, class2").show();
            $elie.toggleClass("class1, class2").hide();            
        });
          // Show clone at same time
        $elie.fadeIn(3000);
    });
});​

ตัวอย่าง jsFiddle


.toggleClass()
.offset()
.fadeIn()
.fadeOut()


บางทีมันอาจจะทำงานได้ในบางจุดอย่างน้อยก็ไม่ได้ดูเหมือนจะไม่ทำในสิ่งที่คาดหวัง
epeleg

@epeleg - ทำงานใน mac chrome สำหรับฉัน คุณคลิกที่สี่เหลี่ยมสีและมันเปลี่ยนสี (2013 - 07 - 15)
Peter Ajtai

ฉันไม่รู้ว่าจริง ๆ แต่ตอนนี้มันใช้งานได้กับ windows7 chrome ของฉัน อาจเกี่ยวข้องกับการอัปเดตโครเมี่ยมที่ฉันทำเมื่อวานนี้หรือไม่! อย่างไรก็ตามอย่างที่ฉันบอกว่ามันทำงานได้จริงในตอนนี้
epeleg

8

ฉันใช้การรวมกันของการเปลี่ยน CSS กับ JQuery สำหรับเอฟเฟกต์ที่ต้องการ เห็นได้ชัดว่าเบราว์เซอร์ที่ไม่รองรับการเปลี่ยน CSS จะไม่เคลื่อนไหว แต่เป็นตัวเลือกที่มีน้ำหนักเบาซึ่งทำงานได้ดีสำหรับเบราว์เซอร์ส่วนใหญ่และสำหรับความต้องการของฉันคือการย่อยสลายที่ยอมรับได้

Jquery เพื่อเปลี่ยนสีพื้นหลัง:

   $('.mylinkholder a').hover(
        function () {
            $(this).css({ backgroundColor: '#f0f0f0' }); 
        },
        function () {
            $(this).css({ backgroundColor: '#fff' });
        }
    );

CSS ที่ใช้การเปลี่ยนภาพเพื่อเปลี่ยนสีพื้นหลังเป็นสีจาง

   .mylinkholder a
   {
   transition: background-color .5s ease-in-out;
   -moz-transition: background-color .5s ease-in-out;
   -webkit-transition: background-color .5s ease-in-out; 
  -o-transition: background-color .5s ease-in-out; 
   }

6

ปลั๊กอินสี jQuery วันนี้สนับสนุนสีที่มีชื่อดังต่อไปนี้:

aqua:[0,255,255],
azure:[240,255,255],
beige:[245,245,220],
black:[0,0,0],
blue:[0,0,255],
brown:[165,42,42],
cyan:[0,255,255],
darkblue:[0,0,139],
darkcyan:[0,139,139],
darkgrey:[169,169,169],
darkgreen:[0,100,0],
darkkhaki:[189,183,107],
darkmagenta:[139,0,139],
darkolivegreen:[85,107,47],
darkorange:[255,140,0],
darkorchid:[153,50,204],
darkred:[139,0,0],
darksalmon:[233,150,122],
darkviolet:[148,0,211],
fuchsia:[255,0,255],
gold:[255,215,0],
green:[0,128,0],
indigo:[75,0,130],
khaki:[240,230,140],
lightblue:[173,216,230],
lightcyan:[224,255,255],
lightgreen:[144,238,144],
lightgrey:[211,211,211],
lightpink:[255,182,193],
lightyellow:[255,255,224],
lime:[0,255,0],
magenta:[255,0,255],
maroon:[128,0,0],
navy:[0,0,128],
olive:[128,128,0],
orange:[255,165,0],
pink:[255,192,203],
purple:[128,0,128],
violet:[128,0,128],
red:[255,0,0],
silver:[192,192,192],
white:[255,255,255],
yellow:[255,255,0]

1
คุณช่วยพูดถึงแหล่งที่มาได้ไหม ขอบคุณสำหรับรายการ btw
Shrikant Sharat

รายการนี้มาจากปลั๊กอิน jQuery สี: plugins.jquery.com/project/color
spoulson

2
-1 รายการสีของคุณหมายถึงรุ่นที่ล้าสมัย เวอร์ชันปัจจุบันมีสีพิเศษอย่างน้อยหนึ่งสีที่ฉันสังเกตเห็น
แอนดรู

5

ฉันชอบใช้การหน่วงเวลา () เพื่อทำสิ่งนี้ให้สำเร็จนี่เป็นตัวอย่าง:

jQuery(element).animate({ backgroundColor: "#FCFCD8" },1).delay(1000).animate({ backgroundColor: "#EFEAEA" }, 1500);

ฟังก์ชั่นนี้สามารถเรียกใช้โดยมี "องค์ประกอบ" เป็นคลาสองค์ประกอบ / ชื่อ / ฯลฯ องค์ประกอบจะปรากฏขึ้นพร้อมกับพื้นหลัง # FCFCD8 กดค้างไว้หนึ่งวินาทีจากนั้นจางลง #EFEAEA


4

เพียงเพิ่มตัวอย่างต่อไปนี้ตะโกน jquery script ของคุณและเพลิดเพลินกับ:

<script src="https://cdn.jsdelivr.net/jquery.color-animation/1/mainfile"></script>

ดูตัวอย่าง

อ้างอิงสำหรับข้อมูลเพิ่มเติม


โปรดใส่ตัวอย่างไว้ในบรรทัดเพื่อไม่ให้ลิงก์เกิดการหมุน
Ege Özcan

2

ฉันสะดุดในหน้านี้ด้วยปัญหาเดียวกัน แต่ปัญหาต่อไปนี้:

  1. ฉันไม่สามารถรวมไฟล์เสริมปลั๊กอิน jQuery กับการตั้งค่าปัจจุบันของฉัน
  2. ฉันไม่สะดวกที่จะวางบล็อคโค้ดขนาดใหญ่ที่ฉันไม่มีเวลาอ่านและตรวจสอบ
  3. ฉันไม่มีสิทธิ์เข้าถึง css
  4. ฉันไม่ค่อยมีเวลาสำหรับการใช้งาน (มันเป็นเพียงการปรับปรุงภาพไปยังหน้าผู้ดูแลระบบ)

ด้วยคำกล่าวข้างต้นที่ตัดคำตอบทุกข้อออกมา เมื่อพิจารณาสีที่ซีดจางของฉันนั้นง่ายมากฉันใช้แฮ็คด่วนต่อไปนี้แทน:

element
  .css('color','#FF0000')
;
$('<div />')
  .css('width',0)
  .animate(
    {'width':100},
    {
      duration: 3000,
      step:function(now){
        var v = (255 - 255/100 * now).toString(16);
        v = (v.length < 2 ? '0' : '') + v.substr(0,2);
        element.css('color','#'+v+'0000');
      }
    }
  )
;

ข้างต้นสร้าง div ชั่วคราวที่ไม่เคยอยู่ในผังเอกสาร ฉันใช้ภาพเคลื่อนไหวในตัวของ jQuery เพื่อทำให้คุณสมบัติตัวเลขขององค์ประกอบนั้นเคลื่อนไหว - ในกรณีนี้width - ซึ่งสามารถแสดงเปอร์เซ็นต์ (0 ถึง 100) จากนั้นใช้ฟังก์ชั่นขั้นตอนฉันถ่ายโอนภาพเคลื่อนไหวตัวเลขนี้เป็นสีข้อความด้วยการคำนวณเลขฐานสิบหกอย่างง่าย

สามารถทำได้เช่นเดียวกันsetIntervalแต่ด้วยการใช้วิธีนี้คุณจะได้รับประโยชน์จากวิธีการเคลื่อนไหวของ jQuery - เช่น.stop()- และคุณสามารถใช้easingและdurationและ

เห็นได้ชัดว่ามันใช้สำหรับการจางสีแบบง่าย ๆ เท่านั้นสำหรับการแปลงสีที่ซับซ้อนมากขึ้นคุณจะต้องใช้คำตอบข้างต้นอย่างใดอย่างหนึ่ง - หรือเขียนโค้ดสีจางของคุณเอง :)


2

ลองอันนี้:

(function($) {  

            var i = 0;  

            var someBackground = $(".someBackground");  
            var someColors = [ "yellow", "red", "blue", "pink" ];  


            someBackground.css('backgroundColor', someColors[0]);  

            window.setInterval(function() {  
                i = i == someColors.length ? 0 : i;  
                someBackground.animate({backgroundColor: someColors[i]}, 3000);  
                i++;  
            }, 30);  

})(jQuery);  

คุณสามารถดูตัวอย่างได้ที่นี่: http://jquerydemo.com/demo/jquery-animate-background-color.aspx



1

หากคุณไม่ต้องการให้ภาพพื้นหลังของคุณใช้ฟังก์ชันการทำงานหลัก jQuery ให้ลองทำดังนี้:

jQuery(".usercontent").mouseover(function() {
      jQuery(".usercontent").animate({backgroundColor:'red'}, 'fast', 'linear', function() {
            jQuery(this).animate({
                backgroundColor: 'white'
            }, 'normal', 'linear', function() {
                jQuery(this).css({'background':'none', backgroundColor : ''});
            });
        });

0

ลองใช้ดู

-moz-transition: background .2s linear;
-webkit-transition: background .2s linear;
-o-transition: background .2s linear;
transition: background .2s linear;

0

ลองอันนี้:

jQuery(".usercontent").hover(function() {
    jQuery(this).animate({backgroundColor:"pink"}, "slow");
},function(){
    jQuery(this).animate({backgroundColor:"white"}, "slow");
});

ปรับปรุงใหม่ด้วยเอฟเฟกต์:

jQuery(".usercontent").hover(function() {

    jQuery(this).fadeout("slow",function(){
        jQuery(this).animate({"color","yellow"}, "slow");
    });
});
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.