使用Raphaël類庫實現的超酷動畫技能圖表

 

在線演示

在這篇文章中GBin1將介紹如何使用Raphaël這個js類庫構建圖表。Raphaël是一個很是小的js類庫用於構建豐富的矢量圖形。jquery

這個圖形的創意很是簡單,咱們使用一些圓弧來展現一個技能百分比數值到一個主圓周中,當咱們將鼠標挪到對應的圓弧,將顯示對應的技能百分比而且產生對應特效。dom

HTML標籤

HTML代碼結構包括一個命名爲"get"的主容器標籤。這個容器包括了全部的用於展示圖形的數據。而後咱們建立一個新的名字叫"diagram"的div元素,這個元素用來做爲生成圓弧的容器,代碼以下:jsp

  1. <div id="diagram"></div>
  2. <div class="get">
  3. <div class="arc">
  4. <span class="text">jQuery</span>
  5. <input type="hidden" class="percent" value="95" />
  6. <input type="hidden" class="color" value="#97BE0D" />
  7. </div>
  8. <div class="arc">
  9.  
  10. <span class="text">CSS3</span>
  11. <input type="hidden" class="percent" value="90" />
  12. <input type="hidden" class="color" value="#D84F5F" />
  13. </div>
  14. <div class="arc">
  15. <span class="text">HTML5</span>
  16. <input type="hidden" class="percent" value="80" />
  17. <input type="hidden" class="color" value="#88B8E6" />
  18.  
  19. </div>
  20. <div class="arc">
  21. <span class="text">PHP</span>
  22. <input type="hidden" class="percent" value="53" />
  23. <input type="hidden" class="color" value="#BEDBE9" />
  24. </div>
  25. <div class="arc">
  26. <span class="text">MySQL</span>
  27. <input type="hidden" class="percent" value="45" />
  28. <input type="hidden" class="color" value="#EDEBEE" />
  29. </div>
  30. </div>

CSS樣式定義

在這個演示的樣式表咱們只定義以下:動畫

1. 隱藏class爲'get'的元素網站

2. 設置id爲'diagram'的元素寬度和高度this

  1. .get {
  2. display:none;
  3. }
  4.  
  5. #diagram {
  6. float:left;
  7. width:600px;
  8. height:600px;
  9. }

Javascript

主要方法是建立一個新的Raphaël對象(變量爲'r'),而後畫出咱們到一個圓形,使用咱們指定的半徑'rad'。spa

而後咱們在建立的Raphaël對象中建立一個新的圓形。咱們使得圓形居中,而且添加一些文字。.net

  1. var o = {
  2. init: function(){
  3. this.diagram();
  4. },
  5. random: function(l, u){
  6. return Math.floor((Math.random()*(u-l+1))+l);
  7. },
  8. diagram: function(){
  9. var r = Raphael('diagram', 600, 600),
  10. rad = 73;
  11.  
  12. r.circle(300, 300, 85).attr({ stroke: 'none', fill: '#193340' });
  13.  
  14. var title = r.text(300, 300, 'Skills').attr({
  15. font: '20px Arial',
  16. fill: '#fff'
  17. }).toFront();
  18.  
  19. }
  20. }
 

接下來咱們更深刻一些。htm

咱們將擴展Raphaël對象,使用一些自定義的屬性:對象

  • alpha - 圓弧的度數
  • random - 指定的隨機數
  • sx,sy - 起始的位置
  • x,y - 結束位置
  • path
  1. var o = {
  2. init: function(){
  3. this.diagram();
  4. },
  5. random: function(l, u){
  6. return Math.floor((Math.random()*(u-l+1))+l);
  7. },
  8. diagram: function(){
  9. var r = Raphael('diagram', 600, 600),
  10. rad = 73;
  11.  
  12. r.circle(300, 300, 85).attr({ stroke: 'none', fill: '#193340' });
  13.  
  14. var title = r.text(300, 300, 'Skills').attr({
  15. font: '20px Arial',
  16. fill: '#fff'
  17. }).toFront();
  18.  
  19. r.customAttributes.arc = function(value, color, rad){
  20. var v = 3.6*value,
  21. alpha = v == 360 ? 359.99 : v,
  22. random = o.random(91, 240),
  23. a = (random-alpha) * Math.PI/180,
  24. b = random * Math.PI/180,
  25. sx = 300 + rad * Math.cos(b),
  26. sy = 300 - rad * Math.sin(b),
  27. x = 300 + rad * Math.cos(a),
  28. y = 300 - rad * Math.sin(a),
  29. path = [['M', sx, sy], ['A', rad, rad, 0, +(alpha > 180), 1, x, y]];
  30. return { path: path, stroke: color }
  31. }
  32.  
  33. $('.get').find('.arc').each(function(i){
  34. var t = $(this),
  35. color = t.find('.color').val(),
  36. value = t.find('.percent').val(),
  37. text = t.find('.text').text();
  38.  
  39. rad += 30;
  40. var z = r.path().attr({ arc: [value, color, rad], 'stroke-width': 26 });
  41.  
  42. z.mouseover(function(){
  43. this.animate({ 'stroke-width': 50, opacity: .75 }, 1000, 'elastic');
  44. if(Raphael.type != 'VML') //solves IE problem
  45. this.toFront();
  46. title.animate({ opacity: 0 }, 500, '>', function(){
  47. this.attr({ text: text + 'n' + value + '%' }).animate({ opacity: 1 }, 500, '<');
  48. });
  49. }).mouseout(function(){
  50. this.animate({ 'stroke-width': 26, opacity: 1 }, 1000, 'elastic');
  51. });
  52. });
  53. }
  54. }
 

而後咱們取得全部須要的數據,例如,百分比,弧度顏色,及其文字。咱們給每個弧度添加半徑數值最後建立一個新的圓弧path。最後一步咱們添加鼠標hover的動畫效果。當鼠標懸浮到圓弧時,標題會改變(即圓圈裏的內容)。同時咱們讓圓弧變大一些。

今天咱們介紹了 Raphaël的類庫,若是你們有興趣,能夠去類庫的網站查看更多的例子: Raphaël主站

  詳細內容參見原文:http://www.gbtags.com/gb/share/5828.htm

相關文章
相關標籤/搜索