JQuery實(shí)現(xiàn)動(dòng)態(tài)適時(shí)改變字體顏色的方法

字號(hào):


    這篇文章主要介紹了JQuery實(shí)現(xiàn)動(dòng)態(tài)適時(shí)改變字體顏色的方法,實(shí)例分析了jQuery操作鼠標(biāo)事件及顏色的技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
    本文實(shí)例講述了JQuery實(shí)現(xiàn)動(dòng)態(tài)適時(shí)改變字體顏色的方法。分享給大家供大家參考。具體分析如下:
    JQuery動(dòng)態(tài)適時(shí)改變字體的顏色,Ajax的效果類似,在文本框輸入文字,再選擇色塊,輸入的文字就會(huì)變成色塊標(biāo)示的顏色值,很不錯(cuò)的效果吧。如果運(yùn)行有錯(cuò),請(qǐng)刷新一次頁面即可。
    代碼如下:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
    <html xmlns="">
    <head>
    <title>JQuery動(dòng)態(tài)改變字體顏色</title>
    <meta charset="gb2312" />
    <style type="text/css">
    h1 {
    font:bold 15px/19px Georgia, serif;
    }
    p {margin:0;}
    #colorselections a {
    border:2px solid #fff;
    margin-right:4px;
    display:block;
    float:left;
    }
    a img {
    border:1px solid #fff;
    width:22px;
    height:22px;
    vertical-align:bottom;
    }
    #colorselections{zoom:1}
    #colorselections a.on {
    border:2px solid #d5680d;
    }
    #previewer {
    margin:26px 0 20px 0;
    padding:6px;
    clear:left;
    font:bold 19px/25px Verdana;
    border:1px solid #ccc;
    width:80%;
    }
    </style>
    <script type="text/javascript" src="js/jquery1.3.2.js"></script>
    <script type="text/javascript">
    $(function(){
    $("#inputText").keyup(function(){
    $("#previewer").empty();
    $("#previewer").text($(this).attr("value"));
    });
    });
    $(function(){
    $("#colorselections a").click(function(){
    $(this).addClass("on").siblings().removeClass("on");
    $("#previewer").css("color",$(this).css("background-color"))
    });
    });
    </script>
    </head>
    <body>
    <h1>請(qǐng)輸入文字</h1>
    <input type="text" id="inputText" value="" />
    <h1>請(qǐng)選擇顏色</h1>
    <p>
    <span id="colorselections">
    <a href="#">
    <img src="/jscss/demoimg/201006/space.gif" />
    </a>
    <a href="#">
    <img src="/jscss/demoimg/201006/space.gif" />
    </a>
    <a href="#">
    <img src="/jscss/demoimg/201006/space.gif" />
    </a>
    <a href="#">
    <img src="/jscss/demoimg/201006/space.gif" />
    </a>
    <a href="#">
    <img src="/jscss/demoimg/201006/space.gif" />
    </a>
    <a href="#">
    <img src="/jscss/demoimg/201006/space.gif" /></a>
    <a href="#">
    <img src="/jscss/demoimg/201006/space.gif" />
    </a>
    </span>
    </p>
    <br clear="both" />
    <p id="previewer"></p>
    </body>
    </html>
    希望本文所述對(duì)大家的jQuery程序設(shè)計(jì)有所幫助。