Showing
3 changed files
with
9 additions
and
3 deletions
public/img/layout/logo-cn-ie.png
0 → 100644
5.08 KB
@@ -446,14 +446,16 @@ function tsAnimate() { | @@ -446,14 +446,16 @@ function tsAnimate() { | ||
446 | function fadeAnimate() { | 446 | function fadeAnimate() { |
447 | var cycle = 3000; | 447 | var cycle = 3000; |
448 | 448 | ||
449 | - if ($logotrans.hasClass('logo-cn')) { | 449 | + if ($logotrans.hasClass('logo-cn-ie')) { |
450 | cycle = 1 * 60 * 1000; | 450 | cycle = 1 * 60 * 1000; |
451 | } | 451 | } |
452 | 452 | ||
453 | $logotrans.fadeOut(loopTime, function() { | 453 | $logotrans.fadeOut(loopTime, function() { |
454 | - $logotrans.toggleClass('logo-cn'); | 454 | + $logotrans.toggleClass('logo-cn-ie'); |
455 | $logotrans.fadeIn(loopTime, function() { | 455 | $logotrans.fadeIn(loopTime, function() { |
456 | - window.setTimeout(fadeAnimate, cycle); | 456 | + window.setTimeout(function() { |
457 | + fadeAnimate(); | ||
458 | + }, cycle); | ||
457 | }); | 459 | }); |
458 | }); | 460 | }); |
459 | } | 461 | } |
@@ -382,6 +382,10 @@ | @@ -382,6 +382,10 @@ | ||
382 | background: resolve('layout/logo-cn.png') no-repeat center center; | 382 | background: resolve('layout/logo-cn.png') no-repeat center center; |
383 | } | 383 | } |
384 | 384 | ||
385 | + .main-logo.logo-cn-ie { | ||
386 | + background: resolve('layout/logo-cn-ie.png') no-repeat center center; | ||
387 | + } | ||
388 | + | ||
385 | .func-area { | 389 | .func-area { |
386 | float: right; | 390 | float: right; |
387 | width: 378px; | 391 | width: 378px; |
-
Please register or login to post a comment