Bạn ghé thăm diễn đàn lần đầu? hãy đăng ký ngay bây giờ để tham gia.
  • Đăng nhập:

Chào mừng bạn đến với ITVNN FORUM - Diễn đàn công nghệ thông tin.

Nếu đây là lần đầu tiên bạn tham gia diễn đàn, xin mời bạn xem phần Hỏi/Ðáp để biết cách dùng diễn đàn. Để có thể tham gia thảo luận bạn phải đăng ký làm thành viên, click vào đây để đăng ký.


  • Partner Area
    • ITVNN HOSTING - Thiết kế website, Cung cấp Domain, Hosting, VPS Việt Nam Anh Hùng - Thông tin truyền thông
kết quả từ 1 tới 3 trên 3
Tăng kích thước phông chữ Giảm kích thước phông chữ
  1. #1
    hau_ooo's Avatar

    Trạng thái
    Offline
    Họ tên
    Đoàn Hậu
    Tham gia ngày
    Sep 2009
    Thành viên thứ
    198
    Đến từ
    Hải Phòng
    Giới tính
    Bài gởi
    858
    Level: 45 [?]
    Experience: 4,576,385
    Next Level: 5,107,448
    Cảm ơn 84
    Cảm ơn 237 lần / 166 Bài viết

    Default Tổng hợp BBcode cho PhpBB  

    1) Link Button New Window BBCode

    Hiệu ứng tạo nút bấm khi chèn link

    BBcode :

    PHP Code: 
    [link2]{TEXT},{URL}[/link2

    HTML

    PHP Code: 
    <input class="button2 btnlite" type="button" value="{TEXT}" onclick="window.open('{URL}', '_blank')" title="{URL}" /> 
    Hướng dẫn :

    PHP Code: 
    Link2 Button: [link2]Linktext,URL[/link2
    2) YouTube Video BBCode

    BBCode:
    PHP Code: 
    [youtube]{TEXT}watch?v={TEXT1}[/youtube
    HTMl

    PHP Code: 
    <object width="425" height="344"><param name="movie" value="{TEXT}v/{TEXT1}&rel=en&fs=1&color1=0x234900&color2=0xd4d4d4"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="{TEXT}v/{TEXT1}&rel=en&fs=1&color1=0x234900&color2=0xd4d4d4" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object
    Hướng dẫn

    PHP Code: 
    YouTube: [youtube]Link to YouTube Video[/youtube

    3) Download Button BBCode

    BBCode:

    [Download]{URL}[/Download]

    HTML for Prosilver:

    PHP Code: 
    <table><tr><td><a href="{URL}"><img src="/images/download.png"></a></td><td width=100%><dl class="codebox"><dt>Download Link: <a href="#" onclick="selectCode(this); return false;">Select</a></dt><dd><code>{URL}</code></dd></dl></td></tr></table
    HTML for Subsilver2:

    PHP Code: 
    <table><tr><td><a href="{URL}"><img src="/images/download.png"></a></td><td width=100%><div class="codetitle"><b>Download Link:</b></div><div class="codecontent">{URL}</div></td></tr></table
    Hướng dẫn

    PHP Code: 
    Download Button: [Download]{URL}[/Download
    File :




    Còn tiếp .....
    thay đổi nội dung bởi: hau_ooo; 17-09-2009 lúc 04:02 PM

  2. #2
    hau_ooo's Avatar

    Trạng thái
    Offline
    Họ tên
    Đoàn Hậu
    Tham gia ngày
    Sep 2009
    Thành viên thứ
    198
    Đến từ
    Hải Phòng
    Giới tính
    Bài gởi
    858
    Level: 45 [?]
    Experience: 4,576,385
    Next Level: 5,107,448
    Cảm ơn 84
    Cảm ơn 237 lần / 166 Bài viết

    Default

    - BBCode Chữ 7 MÀU

    Cách sử dụng thẻ BBCode:


    PHP Code: 
    [7MAU]{TEXT}[/7MAU
    Mã HTML thay thế:


    PHP Code: 
    <script language="JavaScript">
    <!-- 
    Hide the script from old browsers --
    function 
    MakeArray(n){
      
    this.length=n;
      for(var 
    i=1i<=ni++) this[i]=i-1;
      return 
    this
    }

    hex=new MakeArray(16);
    hex[11]="A"hex[12]="B"hex[13]="C"hex[14]="D";
    hex[15]="E"hex[16]="F";

    function 
    ToHex(x){   // Changes a int to hex (in the range 0 to 255)
      
    var high=x/16;
      var 
    s=high+"";        //1
      
    s=s.substring(0,2);   //2 the combination of these = trunc funct.
      
    high=parseInt(s,10);  //3
      
    var left=hex[high+1]; // left part of the hex-value
      
    var low=x-high*16;    // calculate the rest of the values
      
    s=low+"";             //1
      
    s=s.substring(0,2);   //2 the combination of these = trunc funct.
      
    low=parseInt(s,10);   //3
      
    var right=hex[low+1]; // right part of the hex-value
      
    var string=left+""+right// add the high and low together
      
    return string;
    }

    function 
    fadeout(text){
      
    text=text.substring(3,text.length-4);
                             
    // gets rid of the HTML-comment-tags
      
    color_d1=255;          // any value in 'begin' 0 to 255
      
    mul=color_d1/text.length;
      var 
    j=1;
    for(
    i=0;i<text.length;i++){
       
    color_d1=255*Math.sin(i/(text.length/3));
       
    // some other things you can try>>
       // "=255-mul*i" to fade out, "=mul*i" to fade in,
       // or try "255*Math.sin(i/(text.length/3))"
       
    color_h1=ToHex(color_d1);
       
    color_d2=mul*i;
       
    color_h2=ToHex(color_d2);
       
    color_d3=mul*(text.length-i);
       
    color_h3=ToHex(color_d3);

          
    i;

      if (
    text.substring(i,i+1) == '&')
      {
            for (
    i+1text.lengthj++)
            {
                   if (
    text.substring(j,j+1) == ';') { break; }
            }
            if (
    == text.length) { i; }
      }

      if (
    text.substring(i,i+1) == '<')
      {
            for (
    i+1text.lengthj++)
            {
                   if (
    text.substring(j,j+1) == '>') { break; }
            }
            if (
    == text.length) { i; }
      }

       
    document.write("<FONT COLOR='#"+color_h3+color_h1+color_h2+"' >"+
                      
    text.substring(i,j+1)+'</FONT>');
             
    j;
    }
    }
    // --End Hiding Here -->
    </script>
    <
    center>
         <
    font size="5"><strong><script language="JavaScript"><!--
          {
    fadeout("-->{TEXT}<!__");}
        
    //--></script></font></strong></center> 
    Nội dung hướng dẫn:


    PHP Code: 
    [7MAU]{TEXT}[/7MAU


    Thẻ tra từ điển tại Vdict.com

    Cách sử dụng trong bài viết:
    Code:
    PHP Code: 
    [vdict=số_ID_phân_biệt_loại_từ_điển]từ khóa muốn tra cứu[/vdict
    Mã BBCode:
    Code:
    PHP Code: 
    [vdict={NUMBER}]{TEXT}[/vdict
    Mã HTML thay thế:
    Code:
    PHP Code: 
    <a href="http://vdict.com/{TEXT},{NUMBER},0.html">{TEXT}</a
    Chú ý: số_ID_phân_biệt_loại_từ_điển có thể sử dụng bao gồm:

    0: Tra trong tất cả các loại từ điển hiện có tại Vdict.
    1: Tra với từ điển Anh - Việt tại Vdict.
    2: Tra với từ điển Việt - Anh tại Vdict.
    3: Tra với từ điển Việt - Việt tại Vdict.
    4: Tra với từ điển Việt - Pháp tại Vdict.
    5: Tra với từ điển Pháp - Việt tại Vdict.
    6: Tra với từ điển tin học (FOLDOC) tại Vdict.
    7: Tra với từ điển Anh - Anh (Worldnet) tại Vdict.
    8: Tra với từ điển Trung - Việt tại Vdict.
    __________________

  3. Thành viên sau đây nói lời Cảm ơn tới hau_ooo cho bài viết hữu ích này:

    bboy_nonoyes (24-11-2010)

  4. #3
    bboy_nonoyes's Avatar

    Trạng thái
    Offline
    Tham gia ngày
    Mar 2010
    Thành viên thứ
    11673
    Giới tính
    Bài gởi
    7
    Level: 21 [?]
    Experience: 36,095
    Next Level: 38,246
    Cảm ơn 3
    Cảm ơn 0 lần / 0 Bài viết

    Default

    Đang cần! Thanks for share!!!


 

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Trả lời: 2
    Bài mới gởi: 16-11-2011, 09:30 PM
  2. Trả lời: 9
    Bài mới gởi: 12-08-2011, 10:18 AM
  3. Lỗi, cần giúp. phpBB
    By binhvuitanh in forum Styles
    Trả lời: 2
    Bài mới gởi: 19-03-2011, 09:26 PM
  4. Mod [me], [you] , [us] cho phpBB
    By hau_ooo in forum Mods
    Trả lời: 0
    Bài mới gởi: 10-09-2009, 02:44 AM
  5. mChat dùng cho phpBB
    By hau_ooo in forum Mods
    Trả lời: 0
    Bài mới gởi: 10-09-2009, 02:38 AM

Tags for this Thread

Bookmarks

Quuyền Hạn Của Bạn

  • Bạn không thể tạo chủ đề mới
  • Bạn không thể trả lời bài viết
  • Bạn không thể gửi file đính kèm
  • Bạn không thể chỉnh sửa bài viết
  •