CHINH PHỤC
Bạn có muốn phản ứng với tin nhắn này? Vui lòng đăng ký diễn đàn trong một vài cú nhấp chuột hoặc đăng nhập để tiếp tục.
Đăng nhập

Ghi nhớ
Latest topics
» Tôi sẽ đỗ đại học!
by vi01239984564 26/8/2024, 7:41 pm

» Kỷ niệm xưa của chúng ta
by nightWalker 9/2/2024, 6:49 pm

» Bị lệch khung cần người giúp đỡ
by webhuy28 7/10/2021, 10:34 pm

» [HỎI ĐÁP] Danh sách bạn bè không thể hiển thị
by anhdaodaica1 2/10/2021, 10:04 pm

» [HỎI ĐÁP] Thông tin tài khoản không thể lưu thay đổi
by anhdaodaica1 2/10/2021, 6:05 am

» Phim bố già full
by huy.pc52 24/8/2021, 12:20 am

» Xin code Box HTML cho Forumvi
by Larva 1/7/2021, 12:57 pm

» Hello Anh Em Chinh phục
by HoàngTửNaivip5p 28/5/2021, 5:03 am

» Trang chủ tin tức cập nhật HOT 2016
by kenbi05 1/1/2020, 11:02 pm

» Không Dang9 bài viết = hình ảnh được
by huy.pc52 30/11/2019, 10:52 am

» CHÚC ANH EM NĂM MỚI VUI VẺ TRÀNG ĐẦY HẠNH PHÚC
by sps.kủn 12/2/2019, 1:16 pm

» Skin CNTT-K3 2015 (Full Mod)[✔]
by kenbi05 6/7/2018, 12:30 am

» baivong, handsome,....
by sps.kủn 29/6/2018, 1:54 pm

» [SHARE] SKIN ĐHFM.V7 @PUNBB
by tonyhoaivu 2/5/2018, 2:37 pm

» Share Skin Xanh Dương Cùi Bắp
by tonyhoaivu 28/4/2018, 5:57 pm

» Xin Skin http://v1.hotrofm.net/
by tonyhoaivu 28/4/2018, 5:45 pm

» Xin Skin Rao Vặt
by tonyhoaivu 15/4/2018, 12:07 pm

» Làm Sao Để Xóa Khung Này
by tonyhoaivu 14/4/2018, 7:18 pm

» [Lập nhóm]Lập nhóm fm
by vietkanpy 31/3/2018, 11:53 am

» [Help] về server úp ảnh của phutu [✔]
by baivong 17/3/2018, 10:18 pm

» Đừng khóc cho “tôi – Chinh Phục!”…
by AnHung 27/2/2018, 5:33 pm

» [Share] Skin Diendandaihoc.com [ Punbb ] [✔]
by Lu Mờ 13/2/2018, 7:28 pm

» Mời mấy thím vào groups Forumotion Việt Nam.
by dang02315 13/2/2018, 12:40 am

» Có thể làm các kiểu giao diện được không?
by Lu Mờ 9/2/2018, 3:40 pm

» ltns chinhphuc.info
by Shinichi Kudo 27/1/2018, 2:27 am

Top posting users this week
No user


xin code resize ảnh pro

5 posters

Go down

xin code resize ảnh pro Empty xin code resize ảnh pro

Bài gửi by pengocdl 10/6/2010, 6:44 pm

Ai cho em xin code resize ảnh trong topic với.Nhiều khi có mem post ảnh to quá làm nó kéo dài cái diễn đàn ra nhìn ghê lắm.mà Chỉ Resize ảnh trong topic thôi chứ đừng resize cả banner
pengocdl
pengocdl
CPMember
CPMember

No choice Ngày đăng ký : 19/05/2010
Số bài : 46
CPP : 10
Châm ngôn sống : Sống không yêu cho gái nó thèm

http://class8a5.4rumer.com

Về Đầu Trang Go down

xin code resize ảnh pro Empty Re: xin code resize ảnh pro

Bài gửi by fire.diendan 10/6/2010, 7:01 pm

Của bạn đây:

Code:
<script>window.onload = function resizeImagesForumotion()
{
          if (document.images.length > 0)
          {

      var maxWidth = 750;
                var imgHeight;
                var imgWidth;
                for (var i = 0; i < document.images.length; i++)
              {
                        imgWidth = document.images[i].width;
                        imgHeight = document.images[i].height;
          if (document.images[i].width > maxWidth && document.images[i].src != "http://i222.photobucket.com/albums/dd155/tranvudangvt/0_129109001245386971.jpg")  {
            image = new Image();
                                image = document.images[i];

            newImage = image.cloneNode( true )  ;

                                newImage.origHeight = image.height;
                              newImage.origWidth = image.width;


                              newImage.width = maxWidth ;

                                imgHeight = imgHeight / (imgWidth/ maxWidth );
                                newImage.height = imgHeight;
           
            newImage.style.cursor = 'pointer';


            if( image.outerHTML )
            {
                                    newImage.onclick = "var altHeight; var altWidth;  altHeight = this.height ; altWidth = this.width; this.width = this.origWidth;    this.height = this.origHeight; this.origWidth = altWidth; this.origHeight = altHeight;    ";
            } else {
                                    newImage.onclick = function () {
                  var altHeight;
                  var altWidth;
                 
                  altHeight = this.height ;
                  altWidth = this.width;

                  this.width = this.origWidth;
                  this.height = this.origHeight;

                  this.origWidth = altWidth;
                  this.origHeight = altHeight;
              };
            }

            if( parentNode = image.parentNode )
            {
              textMessage = document.createTextNode(' Click vào để xem ảnh đúng kích thước. ');

              elem = document.createElement("td");
              elem.setAttribute( "align", "center");
              elem.style.backgroundColor = '#FFFFCC';
              elem.style.color = '#000';
              elem.style.fontSize = '12pt';

              elem.appendChild( textMessage );
              elem.appendChild( document.createElement("br"));
              elem.appendChild( newImage );
                 
             
              tableRow = document.createElement("tr");
              tableRow.appendChild(elem);
             
              TableElem = document.createElement("table");
              TableElem.setAttribute( "border", "0");
              TableElem.appendChild( tableRow );

              frag = document.createElement("div");
              frag.appendChild( TableElem );

              if( image.outerHTML )
              {
                  image.outerHTML = frag.innerHTML;
              } else {
                  parentNode.replaceChild( TableElem, image );
              }
            }
              } }
          }
    } </script>

Past vào cuối trang.
Nhớ cảm ơn jum 1 phát nhà hì
fire.diendan
fire.diendan
CPMember
CPMember

Firefox PhpBB3
Ngày đăng ký : 27/11/2009
Số bài : 77
CPP : 51
Châm ngôn sống : Tri thức là sức mạnh

http://fire.dogoo.us

Về Đầu Trang Go down

xin code resize ảnh pro Empty Re: xin code resize ảnh pro

Bài gửi by pengocdl 10/6/2010, 7:02 pm

past cuối trang nào bạn
pengocdl
pengocdl
CPMember
CPMember

No choice Ngày đăng ký : 19/05/2010
Số bài : 46
CPP : 10
Châm ngôn sống : Sống không yêu cho gái nó thèm

http://class8a5.4rumer.com

Về Đầu Trang Go down

xin code resize ảnh pro Empty Re: xin code resize ảnh pro

Bài gửi by fs_ts 10/6/2010, 7:07 pm

có tool resize tích hợp sẵn trong ACP rồi mà.
fs_ts
fs_ts
CPMember
CPMember

No choice Ngày đăng ký : 10/08/2009
Số bài : 22
CPP : -16

http://ds.vn

Về Đầu Trang Go down

xin code resize ảnh pro Empty Re: xin code resize ảnh pro

Bài gửi by Mr.FR 10/6/2010, 11:12 pm

Không phải tôi xài cái mặc định ấy ! chuẩn !
Mr.FR
Mr.FR
CPPurpleMember
CPPurpleMember

Chrome PhpBB2
Ngày đăng ký : 07/10/2008
Số bài : 1251
CPP : 911
Châm ngôn sống : thất bại chỉ khi mày từ bỏ :D

http://www.copycopypaste.info

Về Đầu Trang Go down

xin code resize ảnh pro Empty Re: xin code resize ảnh pro

Bài gửi by lamnhattrung_1402 15/7/2010, 11:20 pm

Cái code đó copy xong dán nó vào mục nào vậy pro???? Không phải tôi
avatar
lamnhattrung_1402
CPMember
CPMember

No choice Ngày đăng ký : 23/06/2010
Số bài : 20
CPP : 23
Châm ngôn sống : yeu anh khong em

http://lamnhattrung.heavenforum.com/forum.htm

Về Đầu Trang Go down

xin code resize ảnh pro Empty Re: xin code resize ảnh pro

Bài gửi by Sponsored content


Sponsored content


Về Đầu Trang Go down

Về Đầu Trang

- Similar topics

 
Permissions in this forum:
Bạn không có quyền trả lời bài viết