萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> jQuery動態效果顯示人物結構關系圖的方法

jQuery動態效果顯示人物結構關系圖的方法

   這篇文章主要介紹了jQuery動態效果顯示人物結構關系圖的方法,涉及jQuery操作json結構數據及鼠標事件的技巧,需要的朋友可以參考下

  這是一個人物關系圖,可動態展示,效果非常漂亮。點擊文字可出現動態關系圖的轉換效果。

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <style> #box{ width:500px; height:500px; position: relative } .host{ position:absolute; width:100px; height:50px; line-height:50px; text-align:center; color:#000000; background-color:#eeeeee; border:#000000 1px solid; font-weight:bolder } .guest{ position:absolute; width:80px; height:40px; line-height:40px;text-align:center; color: #999999; background-color:#FFFFFF; border:#000000 1px solid; cursor:pointer } .relationship{ position:absolute; width:60px; height:20px; color: #aaa; line-height:20px; font-size:12px; text-align:center } </style> <script src="jquery-1.6.2.min.js"></script> <script> var relationName = [ {name:"成龍",friend:[ {name:"房祖名",relationship:"父子"}, {name:"林鳳嬌",relationship:"夫妻"}, {name:"吳绮莉",relationship:"绯聞"}, {name:"徐靜蕾",relationship:"激吻"}] }, {name:"房祖名",friend:[ {name:"成龍",relationship:"父子"}, {name:"林鳳嬌",relationship:"母子"}, {name:"方大同",relationship:"情敵"}, {name:"薛凱琪",relationship:"女友"}, {name:"陳坤",relationship:"朋友"}, {name:"趙薇",relationship:"朋友"}] }, {name:"林鳳嬌",friend:[ {name:"成龍",relationship:"夫妻"}, {name:"房祖名",relationship:"母子"}, {name:"吳绮莉",relationship:"情敵"}] }, {name:"吳绮莉",friend:[ {name:"成龍",relationship:"绯聞"}, {name:"林鳳嬌",relationship:"情敵"}, {name:"吳卓林",relationship:"母女"}] }, {name:"徐靜蕾",friend:[ {name:"李亞鵬",relationship:"電影"}, {name:"韓寒",relationship:"娛樂圈"}, {name:"成龍",relationship:"激吻"}, {name:"黃立行",relationship:"電影"}] }, {name:"方大同",friend:[ {name:"房祖名",relationship:"情敵"}, {name:"薛凱琪",relationship:"否認拍拖"}, {name:"林宥嘉",relationship:"歌手"}, {name:"韓庚",relati
copyright © 萬盛學電腦網 all rights reserved