如何使用jQuery淡化文本内容?
重点是引起用户注意该消息。
答案 0 :(得分:88)
答案 1 :(得分:86)
如果你想专门为元素的背景颜色设置动画,我相信你需要包含jQueryUI框架。然后你可以这样做:
$('#myElement').animate({backgroundColor: '#FF0000'}, 'slow');
jQueryUI也有一些可能对你有用的内置效果。
答案 2 :(得分:18)
我知道问题是如何用Jquery做到这一点,但是你可以用简单的css和一点jquery来实现同样的效果......
例如,你有一个div' box' class,添加以下css
.box {
background-color: black;
-webkit-transition: background 0.5s linear;
-moz-transition: background 0.5s linear;
-ms-transition: background 0.5s linear;
-o-transition: background 0.5s linear;
transition: background 0.5s linear;
}
然后使用AddClass函数添加另一个具有不同背景颜色的类,如突出显示的框#39;或类似的东西与以下css:
.box.highlighted {
background-color: white;
}
我是初学者,也许这种方法存在一些缺点,但也许对某些人有帮助
这是一个codepen: https://codepen.io/anon/pen/baaLYB
答案 3 :(得分:14)
通常,您可以使用.animate()方法来处理任意CSS属性,但对于背景颜色,您需要使用color plugin。包含此插件后,您可以使用其他已指示$('div').animate({backgroundColor: '#f00'})
的内容来更改颜色。
正如其他人所写,其中一些也可以使用jQuery UI库完成。
答案 4 :(得分:9)
仅使用jQuery(无UI库/插件)。甚至jQuery都可以轻松消除
//Color row background in HSL space (easier to manipulate fading)
$('tr').eq(1).css('backgroundColor','hsl(0,100%,50%');
var d = 1000;
for(var i=50; i<=100; i=i+0.1){ //i represents the lightness
d += 10;
(function(ii,dd){
setTimeout(function(){
$('tr').eq(1).css('backgroundColor','hsl(0,100%,'+ii+'%)');
}, dd);
})(i,d);
}
演示:http://jsfiddle.net/5NB3s/2/
答案 5 :(得分:8)
根据您的浏览器支持,您可以使用css动画。浏览器支持IE10和CSS动画。这很好,所以你不必添加jquery UI依赖,如果它只是一个小的复活节彩蛋。如果它是您网站的组成部分(也就是IE9及以下版本所需),请使用jquery UI解决方案。
.your-animation {
background-color: #fff !important;
-webkit-animation: your-animation-name 1s ease 0s 1 alternate !important;
}
//You have to add the vendor prefix versions for it to work in Firefox, Safari, and Opera.
@-webkit-keyframes your-animation-name {
from { background-color: #5EB4FE;}
to {background-color: #fff;}
}
-moz-animation: your-animation-name 1s ease 0s 1 alternate !important;
}
@-moz-keyframes your-animation-name {
from { background-color: #5EB4FE;}
to {background-color: #fff;}
}
-ms-animation: your-animation-name 1s ease 0s 1 alternate !important;
}
@-ms-keyframes your-animation-name {
from { background-color: #5EB4FE;}
to {background-color: #fff;}
}
-o-animation: your-animation-name 1s ease 0s 1 alternate !important;
}
@-o-keyframes your-animation-name {
from { background-color: #5EB4FE;}
to {background-color: #fff;}
}
animation: your-animation-name 1s ease 0s 1 alternate !important;
}
@keyframes your-animation-name {
from { background-color: #5EB4FE;}
to {background-color: #fff;}
}
接下来创建一个jQuery点击事件,将your-animation
类添加到您想要设置动画的元素,触发背景从一种颜色淡化到另一种颜色:
$(".some-button").click(function(e){
$(".place-to-add-class").addClass("your-animation");
});
答案 6 :(得分:4)
我写了一个超级简单的jQuery插件来完成与此类似的操作。我想要一些非常轻的东西(它缩小了732个字节),所以包括一个大插件或UI对我来说是不可能的。它的边缘仍然有点粗糙,所以欢迎反馈。
您可以在此处查看插件:https://gist.github.com/4569265。
使用该插件,通过更改背景颜色然后添加setTimeout
来触发插件以淡入原始背景颜色来创建高光效果将是一件简单的事情。
答案 7 :(得分:3)
仅使用简单的javascript在两种颜色之间淡出:
function Blend(a, b, alpha) {
var aa = [
parseInt('0x' + a.substring(1, 3)),
parseInt('0x' + a.substring(3, 5)),
parseInt('0x' + a.substring(5, 7))
];
var bb = [
parseInt('0x' + b.substring(1, 3)),
parseInt('0x' + b.substring(3, 5)),
parseInt('0x' + b.substring(5, 7))
];
r = '0' + Math.round(aa[0] + (bb[0] - aa[0])*alpha).toString(16);
g = '0' + Math.round(aa[1] + (bb[1] - aa[1])*alpha).toString(16);
b = '0' + Math.round(aa[2] + (bb[2] - aa[2])*alpha).toString(16);
return '#'
+ r.substring(r.length - 2)
+ g.substring(g.length - 2)
+ b.substring(b.length - 2);
}
function fadeText(cl1, cl2, elm){
var t = [];
var steps = 100;
var delay = 3000;
for (var i = 0; i < steps; i++) {
(function(j) {
t[j] = setTimeout(function() {
var a = j/steps;
var color = Blend(cl1,cl2,a);
elm.style.color = color;
}, j*delay/steps);
})(i);
}
return t;
}
var cl1 = "#ffffff";
var cl2 = "#c00000";
var elm = document.getElementById("note");
T = fadeText(cl1,cl2,elm);
答案 8 :(得分:0)
javascript在没有jQuery或其他库的情况下淡化为白色:
<div id="x" style="background-color:rgb(255,255,105)">hello world</div>
<script type="text/javascript">
var gEvent=setInterval("toWhite();", 100);
function toWhite(){
var obj=document.getElementById("x");
var unBlue=10+parseInt(obj.style.backgroundColor.split(",")[2].replace(/\D/g,""));
if(unBlue>245) unBlue=255;
if(unBlue<256) obj.style.backgroundColor="rgb(255,255,"+unBlue+")";
else clearInterval(gEvent)
}
</script>
在打印时,黄色为负蓝色,因此从小于255的第3个rgb元素(蓝色)开始,以黄色突出显示。然后设置10+
值的var unBlue
增加负蓝色,直到达到255.