过期域名预定抢注

 找回密碼
 免费注册

Firefox推廣提高收入的方法

[複製鏈接]
發表於 2007-7-22 09:56:01 | 顯示全部樓層 |閱讀模式
效果演示:
3 b5 o/ B: I4 Y1 S, g9 }# _/ t" C
http://www.adsensetips.com.cn   頂部,瀏覽應該沒問題!
9 _6 l: U4 @9 Z& l% e7 r" G' d# ^+ U# H# y8 F5 ^
打開後,在瀏覽器頂部會有一個模仿IE自帶的黃色警告條,比較醒目。2 Y6 j  C: F( w) |/ a7 r
點過以後就不會再出現了,除非客戶端刪除cookie。

- _7 E3 H5 b: h" E3 A' h, C
5 N& E( x" B5 K8 AAfter opening at the top of the browser will have a built-in IE imitation yellow warning, more eye-catching. After the on-off point will not happen again, unless the client to delete cookie.: l0 ]% b! V( n) S3 h
0 P7 ~( k; I0 n$ _1 K( T
以下是FIREFOX.JS的代碼
) {& P5 Z$ \- t6 B; G9 h2 O; o8 B" W  N& V

  1. + z0 |; a5 t2 ]3 D9 }, r& L
  2. // This function does the actual browser detection
      {7 V2 l6 f- q, K# D
  3. function writeCookie(name, value, hours)) P7 g$ `- Y5 c0 Z) [/ S: |
  4. {4 r4 R9 I" O  T3 J# `+ f
  5. var expire = 「」;
    3 z0 A! A: A$ _" A* B, v
  6. if(hours != null)
    7 T: ~. K) W; `. p- E  t' Y
  7. {1 ^' x2 g7 g7 s4 Y' r& m5 m
  8.   expire = new Date((new Date()).getTime() + hours * 3600000);
    & g( x4 R1 s. d" O. W
  9.   expire = 「; expires=」 + expire.toGMTString();
    ! d1 a) r  \- A5 t, f
  10. }
    % @, X2 Q! J& u% [" A. @
  11. document.cookie = name + 「=」 + escape(value) + expire;
    2 m# u0 P. e& F: `3 h
  12. }0 ~5 @! j8 ^& S8 [/ Z) g2 `
  13. // Example:
    ( A, f6 k. U& A* \& q2 B
  14. // alert( readCookie(」myCookie」) );
    ( x8 H7 S8 y7 D3 Y8 X5 H
  15. function readCookie(name)5 J5 ]/ Y! Q3 Z* O. P
  16. {
    - K) j/ h/ k  p8 T6 S
  17. var cookieValue = 「」;
    3 J; @& t- @1 X! F! O5 c& S
  18. var search = name + 「=」;4 ~  U  W  M, j6 N
  19. if(document.cookie.length > 0)
    $ p' U4 m8 V& O' y9 @! v( E
  20. {" J3 y6 U; @6 _5 z
  21.   offset = document.cookie.indexOf(search);# \  i7 d' y7 }
  22.   if (offset != -1)
    ) B* L! x/ R0 u; Y. z# w
  23.   {
    , Q/ Q7 Y2 O/ u! H4 u
  24.    offset += search.length;
    1 R3 _7 E) w! l1 y: F. \
  25.    end = document.cookie.indexOf(」;」, offset);
    + s* _6 [8 H2 P2 W" z: ?
  26.    if (end == -1) end = document.cookie.length;$ M( u6 g. R, h: F! F# U
  27.    cookieValue = unescape(document.cookie.substring(offset, end))
    ' n9 E/ u  t: H2 t3 B' e
  28.   }
    4 g9 P, T( C, f" z' H  q5 W
  29. }# U, P- ~6 |& I% _* V
  30. return cookieValue;
    % j4 v& o* c9 q- V; B
  31. }) P$ a9 r( o# i7 W. d' E) T
  32. function hasIE_hasIE() {* O4 S0 ~4 r( ^. S, ?, R5 A, S
  33.   var ua = navigator.userAgent.toLowerCase();
      u! w9 @% E$ f5 V
  34.   return ((ua.indexOf(』msie』) != -1) && (ua.indexOf(』opera』) == -1) &&  ]2 N$ I% k3 _$ R
  35.           (ua.indexOf(』webtv』) == -1) &&
    6 u" H1 _9 u& P9 I8 X
  36.           (location.href.indexOf(』seenIEPage』) == -1));
    " V$ _# J  t' r5 v; }& E' Y/ p0 ?
  37. }
    7 K0 m2 G7 S. l3 j  o% J: e! ~
  38. function hasIE_showLayer(whichLayer). @; i. @. H+ U" q7 Q  l, A% j
  39. {
    + L+ z1 k- Z4 [" F2 |
  40.   if (document.getElementById)
    + [1 }* f5 ?) a% m
  41.     {
    6 f- q. H4 ]3 m
  42.       var style2 = document.getElementById(whichLayer).style;
    % f) ^4 d! t2 j. Z
  43.       style2.display = 「block」;
    0 s% L) i4 ~9 O6 |) Z+ Y
  44.     }; ^9 U+ |1 O, i4 _" O/ r' J  Y
  45.   else if (document.all)2 E5 n; l; l" h' p
  46.     {
    : C7 N+ d1 v" k- n* s- @
  47.       var style2 = document.all[whichLayer].style;: g2 h/ d. W$ y0 ?0 \1 d
  48.       style2.display = 「block」;
    4 ^8 n" ^' k! R+ }, e5 @5 D9 z# R
  49.     }* ?/ `" {" B# c) }
  50.   else if (document.layers)7 k6 f. g9 ~3 \8 B+ y
  51.     {0 @' w) u) ?. a
  52.       var style2 = document.layers[whichLayer].style;% q. C7 ~6 o5 \1 a; o
  53.       style2.display = 「block」;; u+ l1 k4 H; a* U4 i
  54.     }
    ; }. o% y6 Z4 n* V" k. x0 R' s
  55. }4 P8 t7 @7 k/ X+ _9 ?
  56. // Hides and shows sections of the page based on whether or not it』s
    . t+ |. \+ U3 v+ `; `6 _
  57. // running in IE' R( h1 R% b" h1 t3 {7 W
  58. function hasIE_hideAndShow()
    + n4 o1 _. A; t, |5 d- c  ]
  59. {; a( k8 w7 `) t" {/ s
  60.   if (hasIE_hasIE())' S8 U# Z. N" e+ u0 b
  61.   {/ S6 R; g* ?) X* V/ f
  62.     hasIE_showLayer(」hasIE_level1〞);
    ) ^1 v: y% `" e& z4 b% K
  63.   }3 b" @2 d3 W, Q3 @
  64.   else{}- R3 K1 ^* d2 N" e9 z' m* k
  65. }
    0 u/ v' o; A& X( W6 J( i( n$ f, H
  66. function hasIE_ContinueWithoutFF() {: q/ x1 _+ l( A: k$ b9 G7 c* _$ d
  67.     if (location.href.indexOf(』?') != -1)
    2 I5 g  S8 F' m: F7 T5 A
  68.         location.href += 『&seenIEPage=1′;+ A5 l& a- a: Q! _6 r
  69.     else* N+ e& N/ j$ n+ r, \
  70.         location.href += 『?seenIEPage=1′;3 F  {' j0 f  h  }6 s* a! f
  71. }
    / x% X# X% N2 O7 T0 k0 m6 N
  72. function closediv(i) {8 ]- A) R5 W1 G% \
  73. writeCookie(」status」,」showed24〞,240);
    : n1 M: b$ b5 M& u& y
  74. document.getElementById(i).style.display=』none』;
    + s, |3 Q/ l% ^
  75. }
    - T, L# n/ ^* D0 ]  [. j
  76. document.write(」<table id=\」hasIE_level1\」 style=』display:none;clear:both;line-height:100%;』 height=\」22\」 width=\」100%\」 cellspacing=0 cellpadding=0 border=0><tr><td><div  style=\」background:#FFFFBB; text-align: center; padding:2px 0 3px; border-bottom:1px solid #ffd532;position:absolute; top:0; left:0; width:100%; z-index:100\」><div id=\」iewarning\」 style=\」width:19px; float:left;\」><img align=\」absmiddle\」 src=\」http://www.adsensetips.com.cn/ad/Firefox/warning.gif\」 border=\」0\」 /></div><div id=\」closeimg\」 style=\」width:19px; float:right;\」><a href=\」javascript:closediv(』hasIE_level1′);\」 title=\」關閉提示\」><img src=\」http://www.adsensetips.com.cn/ad/Firefox/close1.gif\」 align=\」absmiddle\」 border=\」0\」 /></a></div><div style=\」 margin-top:4px;marign-left:4px;font-size:12px;color:#092E20\」>Found that you are using old bugbear, the IE browser, strongly recommend you the Windows operating system using the most secure browser: <a href=\」http://www.gypop.com/english\」 title=\」Download FireFox2.0\」 target=\」_blank\」><font color=\」#ee0000\」>Download FireFox2.0</a></font></div></div><div style=\」clear:both\」></div></td></tr></table>」);
    . z: v7 x3 D: N! d! a5 o
  77. if(document.referrer.indexOf(」hao123〞)==-1 && document.referrer.indexOf(」hao222〞)==-1)
    6 i5 g* C5 X& l8 {! @. ]
  78. {
    8 Y  f8 y' ~+ A! H- Z
  79. if(readCookie(」status」) != 「showed24〞)6 i( @; U# |4 x& |- E
  80. {
    ; w3 W9 C0 C8 Z& t( O
  81.   hasIE_hideAndShow();
    4 I5 K6 v; n: M- f
  82. }, ~! X( [( s8 h# [$ |! `
  83. }
    " W, M9 I  `* R# E4 X) p' j
複製代碼

6 x: S4 C' T1 U$ }$ M# m" e$ h& c: Q8 W; V
在頁面插入就是了 <script src='路徑/firefox.js' language='javascript'></script>
8 }+ _( ^- x* f  l2 e2 m3 b
( d9 k) e; }; w' O6 t3 {# v# o3 OPackaging Download Address : http://www.adsensetips.com.cn/ad/firefox.rar3 C' p. g  @: ?
% ^) j3 G1 ~- B$ E! ?* b0 \
效果演示:+ \- k' Z% X! N- T- u+ t9 O
http://www.adsensetips.com.cn
發表於 2007-7-22 10:34:50 | 顯示全部樓層
最好還能隨著網頁下拉一直附著著頂部
回復 给力 爆菊

使用道具 舉報

發表於 2007-7-22 10:35:58 | 顯示全部樓層
收下了,謝謝。
回復 给力 爆菊

使用道具 舉報

發表於 2007-7-22 12:11:37 | 顯示全部樓層
鬱悶啊.我還是不懂
回復 给力 爆菊

使用道具 舉報

發表於 2007-7-22 12:24:51 | 顯示全部樓層
這樣的方法都被很多人用了很久了。。google開始K了。。
回復 给力 爆菊

使用道具 舉報

發表於 2007-7-22 12:57:20 | 顯示全部樓層
用的多了就不靈了!
回復 给力 爆菊

使用道具 舉報

發表於 2007-7-22 13:26:37 | 顯示全部樓層
對google收錄有影響不?
回復 给力 爆菊

使用道具 舉報

 樓主| 發表於 2007-7-22 14:36:58 | 顯示全部樓層
方法是拿來借鑒的!
回復 给力 爆菊

使用道具 舉報

發表於 2007-7-22 18:09:09 | 顯示全部樓層
GG好像默許這樣做。
回復 给力 爆菊

使用道具 舉報

發表於 2007-7-23 15:58:45 | 顯示全部樓層
gg上次開會不是說了嗎
) D; Y# V+ s' a% {會被k的
回復 给力 爆菊

使用道具 舉報

您需要登錄後才可以回帖 登錄 | 免费注册

本版積分規則

4um點基跨境網編創業社區

GMT+8, 2024-11-24 07:19

By DZ X3.5

小黑屋

快速回復 返回頂部 返回列表