demo :
cho vào css
tạo trang javascripts: In the topic
cho phpBB2 tìm:
C: FMVI
cho vào css
tạo trang javascripts: In the topic
- Code:
var CopyrightNoticeEn = 'Copyright by FmVi. All Rights Reserved. Use, modification, and/or distribution of this script is not allowed without direct permission from baivong (gialangsangai2000@yahoo.com). This entire copyright notice must remain in the original, copied, or modified script';
var CopyrightNoticeVi = 'Bản quyền FmVi. Giữ toàn quyền. Việc sử dụng, sửa đổi , và / hoặc phân phối mã này mà không được phép trực tiếp từ baivong (gialangsangai2000@yahoo.com) là không được phép. Toàn bộ thông báo bản quyền này phải được giữ nguyên khi sao chép, hoặc sửa đổi';
$(function () {
$(".postbody .post-entry").each(function () {
if ($(this).height() >= 350) {
$(this).after('<p class="thugon"><span class="viewfull">Xem toàn bộ</span><span class="viewhide">Thu gọn</span><span class="fullOff" style="float:right">Tắt chức năng thu gọn</span><span class="fullOn" style="float:right">Bật chức năng thu gọn</span></p>');
$(this).addClass("baivietdai");
$(".baivietdai").height(315);
}
});
if (my_getcookie("thugonbaiviet") == "yes") {
$(".fullOn, .viewhide").show();
$(".fullOff, .viewfull").hide();
$(".baivietdai").height("100%");
}
$(".viewfull").click(function () {
$(this).parent().prev().height("100%");
$(this).hide().next().show();
});
$(".viewhide").click(function () {
$(this).parent().prev().animate({
height: "315px"
}, 1000);
$(this).hide().prev().show();
});
$(".fullOff").click(function () {
my_setcookie("thugonbaiviet", "yes", true);
$(".baivietdai").height("100%");
$(".fullOn, .viewhide").show();
$(".fullOff, .viewfull").hide();
});
$(".fullOn").click(function () {
my_setcookie("thugonbaiviet", "no", true);
$(".baivietdai").animate({
height: "315px"
}, 1000);
$(".fullOn, .viewhide").hide();
$(".fullOff, .viewfull").show();
});
});
cho phpBB2 tìm:
- Code:
$(".postbody .post-entry")
- Code:
$(".postbody").find("div:first")
C: FMVI
Last edited by An Hùng on Sun Dec 02, 2012 12:10 pm; edited 1 time in total