萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> javascript實現的圖片切割多塊效果實例

javascript實現的圖片切割多塊效果實例

   這篇文章主要介紹了javascript實現的圖片切割多塊效果,涉及javascript操作圖片及css樣式的技巧,需要的朋友可以參考下

  ?

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 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru"> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> .line{ display:none; z-index:1; left:0; top:0; position:absolute; } #line1{ display:block; } .container{ position:relative; width:564px; height:294px; overflow:hidden; } .border{ border:5px solid #000; } .corner{ position:absolute; width:282px; height:147px; background:#ccc; overflow:hidden; } .leftTop,.inLeftTop{ position:absolute; left:0; top:0; right:auto; bottom:auto; } .rightTop,.inRightTop{ position:absolute; right:0; top:0; left:auto; bottom:auto; } .rightBottom,.inRightBottom{ position:absolute; right:0; bottom:0; top:auto; left:auto; } .leftBottom,.inLeftBottom{ position:absolute; left:0; bottom:0; top:auto; right:auto; } </style> </head> <body> <script src="jquery-1.6.2.min.js" type="text/javascript"></script> <script type="text/javascript"> function crossLine(container,option,callback){ var lineX=$("<div style='width:2000px;height:4px;overflow:hidden;position:absolute;background:#FACC41;left:0;top:0;z-index:1'></div>"); var lineY=$("<div style='width:4px;height:2000px;overflow:hidden;position:absolute;background:#FACC41;left:0;top:0;z-index:1'></div>"); var _option={ "display":"none", "targetPosX":container.width()/2-2, "targetPosY":container.height()/2-2, "time":500, "freq":10 }; $.extend(_option,option); option=_option; var targetPosX=option.targetPosX; var targetPosY=option.targetPosY; var time=option.time; var freq=option.freq; times=time/freq; container.append(lineX).append(lineY); //開始運動 var lxt=lineX.position().top; var lyl=lineY.position().left; xPerTime=targetPosX/times; yPerTime=targetPosY/times; var count=0; var si=setInterval(function(){ count++; if(count>=times){ clearInterval(si); if(typeof(callback)=="function"){ callback(); } if(option.display=="none"){ lineX.remove(); lineY.remove(); } } if(lxt+yPerTime<=targetPosY){ lxt += yPerTime; lineX.css("top",lxt); }else{ lxt=targetPosY; lineX.css("top",targetPosY); } if(lyl+xPerTime<=targetPosX){ lyl += xPerTime; lineY.css("left",lyl); }else{ lyl=targetPosX; lineY.css("left",targetPosX); } },freq); }
copyright © 萬盛學電腦網 all rights reserved