18) hình trái tim
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/iloveanimals1.cur"), url("http://downloads.totallyfreecursors.com/thumbnails/iloveanimals-pink.gif"), auto;}</style>
19) hình chú gấu
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/koala.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/Koala.gif"), auto;}</style>
20) hình kanguru
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/kangaroo.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/kangaroo.gif"), auto;}</style>
21) hình chú gấu trúc
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/panda1.cur"), url("http://downloads.totallyfreecursors.com/thumbnails/panda1.gif"), auto;}</style>
22) hình bé baby 1
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/baby1.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/Baby1.gif"), auto;}</style>
23) hình bé baby 2
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/babygirl-ani.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/BabyGirl-ani.gif"), auto;}</style>
24) hình lá cờ argentina
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/argentina.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/ARGENTINA.gif"), auto;}</style>
25) hình lá cờ Anh
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/england.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/ENGLAND.gif"), auto;}</style>
26) hình lá cờ nhật bản
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/japan.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/JAPAN.gif"), auto;}</style>
27) hình lá cờ việt nam
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/vietnam.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/VIETNAM.gif"), auto;}</style>
chúc các bạn có những giây phút thư giản vui vẽ, nếu thấy thik thì thank cái nhá.
28) hình chử i love my pet
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/lovemypets.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/LoveMyPets.gif"), auto;}</style>
-------------------------------------------------
code hiệu ứng nhiều hoa rơi trên nền blog
( Thêm khối rồi paste vào hoặc đặt vào mục thông tin bản quyền )
-----Mã code như sau----------
<script>
//var pictureSrc = ‘http://img244.imageshack.us/img244/1024/snowbw4.gif’; //the location of the snowflakes//Noel
var pictureSrc = ‘http://s351.photobucket.com/albums/q463/web_tgth/th_Hoadao.gif’; //the location of the snowflakes//Xuân
var pictureWidth = 20; //the width of the snowflakes
var pictureHeight = 20; //the height of the snowflakes
var numFlakes = 10; //the number of snowflakes
var downSpeed = 0.01; //the falling speed of snowflakes (portion of screen per 100 ms)
var lrFlakes = 10; //the speed that the snowflakes should swing from side to side
if( typeof( numFlakes ) != ‘number’ || Math.round( numFlakes ) != numFlakes || numFlakes < 1 ) { numFlakes = 10; }
//draw the snowflakes
for( var x = 0; x < numFlakes; x++ ) {
if( document.layers ) { //releave NS4 bug
document.write(‘<layer id=”snFlkDiv’+x+’”><img src=”’+pictureSrc+’” height=”’+pictureHeight+’” width=”’+pictureWidth+’” alt=”*” border=”0”></layer>’);
} else {
document.write(‘<div style=”position:absolute;” id=”snFlkDiv’+x+’”><img src=”’+pictureSrc+’” height=”’+pictureHeight+’” width=”’+pictureWidth+’” alt=”*” border=”0”></div>’);
}
}
//calculate initial positions (in portions of browser window size)
var xcoords = new Array(), ycoords = new Array(), snFlkTemp;
for( var x = 0; x < numFlakes; x++ ) {
xcoords
do { snFlkTemp = Math.round( ( numFlakes – 1 ) * Math.random() );
} while( typeof( ycoords[snFlkTemp] ) == ‘number’ );
ycoords[snFlkTemp] = x / numFlakes;
}
//now animate
function flakeFall() {
if( !getRefToDivNest(‘snFlkDiv0’) ) { return; }
var scrWidth = 0, scrHeight = 0, scrollHeight = 0, scrollWidth = 0;
//find screen settings for all variations. Doing this every time allows for resizing and scrolling
if( typeof( window.innerWidth ) == ‘number’ ) { scrWidth = window.innerWidth; scrHeight = window.innerHeight; } else {
if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
scrWidth = document.documentElement.clientWidth; scrHeight = document.documentElement.clientHeight; } else {
if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
scrWidth = document.body.clientWidth; scrHeight = document.body.clientHeight; } } }
if( typeof( window.pageYOffset ) == ‘number’ ) { scrollHeight = pageYOffset; scrollWidth = pageXOffset; } else {
if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) { scrollHeight = document.body.scrollTop; scrollWidth = document.body.scrollLeft; } else {
if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) { scrollHeight = document.documentElement.scrollTop; scrollWidth = document.documentElement.scrollLeft; } }
}
//move the snowflakes to their new position
for( var x = 0; x < numFlakes; x++ ) {
if( ycoords
var divRef = getRefToDivNest(‘snFlkDiv’+x); if( !divRef ) { return; }
if( divRef.style ) { divRef = divRef.style; } var oPix = document.childNodes ? ‘px’ : 0;
divRef.top = ( Math.round( ycoords
divRef.left = ( Math.round( ( ( xcoords
ycoords
}}
//DHTML handlers
function getRefToDivNest(divName) {
if( document.layers ) { return document.layers[divName]; } //NS4
if( document[divName] ) { return document[divName]; } //NS4 also
if( document.getElementById ) { return document.getElementById(divName); } //DOM (IE5+, NS6+, Mozilla0.9+, Opera)
if( document.all ) { return document.all[divName]; } //Proprietary DOM – IE4
return false;
}
window.setInterval(‘flakeFall();’,100);</script>
-------------------------------------------------
Mã code 13 kiểu chữ new, mới, hot
Các Thầy/ cô có thể thiết kế chữ nhấp nháy theo ý mình. Nếu không tự làm được, các bạn có thể copy code sau vào sau tiêu đề của bài viết là được.
Code1: ( chữ new)
<img src="http://freewebs.com/dophuongoanh/new.gif">
Code2: ( Hót)
<img src="http://ketnoibanbe.org/forum/images/icons/new.gif">
Code3: ( chữ new)
<img src="http://www.gdtd.com.vn/images/new.gif">
Code 4: ( Chữ New)
<img src="http://www.3c.com.vn/Uploaded/hoangtv/07-06-007/new_ani.gif">
Code 5: ( Mới)
<img src="http://thcsdetham.edu.vn/Home_news.gif">
Code 6: New có mũi tên
<img src="http://i242.photobucket.com/albums/ff54/trannampro/2.gif ">
Code 7: New
<img src="http://i649.photobucket.com/albums/uu213/tuongct1/icon-new.gif ">
Code 8: New nhún nhẩy
<img src="http://i649.photobucket.com/albums/uu213/tuongct1/newtrang.gif ">
Code 9: Chữ New xoay
<img src="http://www.3c.com.vn/Uploaded/hoant/Anh%20xep/new1.gif ">
Code 10: Chữ HOT
<img src="http://www.3c.com.vn/Uploaded/hoant/anh3cdotcom/image004.gif ">
Code 11: Chữ New ấn tượng
<img src="http://i649.photobucket.com/albums/uu213/tuongct1/icon-new.gif">
Code 12 Chữ New dịu mắt
<img src="http://www.vantholacviet.org/images/new.gif">
Code 13: Chữ New
<img src="http://tratu.baamboo.com/images/new.gif">
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/iloveanimals1.cur"), url("http://downloads.totallyfreecursors.com/thumbnails/iloveanimals-pink.gif"), auto;}</style>
19) hình chú gấu
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/koala.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/Koala.gif"), auto;}</style>
20) hình kanguru
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/kangaroo.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/kangaroo.gif"), auto;}</style>
21) hình chú gấu trúc
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/panda1.cur"), url("http://downloads.totallyfreecursors.com/thumbnails/panda1.gif"), auto;}</style>
22) hình bé baby 1
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/baby1.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/Baby1.gif"), auto;}</style>
23) hình bé baby 2
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/babygirl-ani.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/BabyGirl-ani.gif"), auto;}</style>
24) hình lá cờ argentina
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/argentina.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/ARGENTINA.gif"), auto;}</style>
25) hình lá cờ Anh
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/england.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/ENGLAND.gif"), auto;}</style>
26) hình lá cờ nhật bản
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/japan.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/JAPAN.gif"), auto;}</style>
27) hình lá cờ việt nam
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/vietnam.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/VIETNAM.gif"), auto;}</style>
chúc các bạn có những giây phút thư giản vui vẽ, nếu thấy thik thì thank cái nhá.
28) hình chử i love my pet
<style>A:hover{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/lovemypets.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/LoveMyPets.gif"), auto;}</style>
-------------------------------------------------
code hiệu ứng nhiều hoa rơi trên nền blog
( Thêm khối rồi paste vào hoặc đặt vào mục thông tin bản quyền )
-----Mã code như sau----------
<script>
//var pictureSrc = ‘http://img244.imageshack.us/img244/1024/snowbw4.gif’; //the location of the snowflakes//Noel
var pictureSrc = ‘http://s351.photobucket.com/albums/q463/web_tgth/th_Hoadao.gif’; //the location of the snowflakes//Xuân
var pictureWidth = 20; //the width of the snowflakes
var pictureHeight = 20; //the height of the snowflakes
var numFlakes = 10; //the number of snowflakes
var downSpeed = 0.01; //the falling speed of snowflakes (portion of screen per 100 ms)
var lrFlakes = 10; //the speed that the snowflakes should swing from side to side
if( typeof( numFlakes ) != ‘number’ || Math.round( numFlakes ) != numFlakes || numFlakes < 1 ) { numFlakes = 10; }
//draw the snowflakes
for( var x = 0; x < numFlakes; x++ ) {
if( document.layers ) { //releave NS4 bug
document.write(‘<layer id=”snFlkDiv’+x+’”><img src=”’+pictureSrc+’” height=”’+pictureHeight+’” width=”’+pictureWidth+’” alt=”*” border=”0”></layer>’);
} else {
document.write(‘<div style=”position:absolute;” id=”snFlkDiv’+x+’”><img src=”’+pictureSrc+’” height=”’+pictureHeight+’” width=”’+pictureWidth+’” alt=”*” border=”0”></div>’);
}
}
//calculate initial positions (in portions of browser window size)
var xcoords = new Array(), ycoords = new Array(), snFlkTemp;
for( var x = 0; x < numFlakes; x++ ) {
xcoords
- = ( x + 1 ) / ( numFlakes + 1 );
do { snFlkTemp = Math.round( ( numFlakes – 1 ) * Math.random() );
} while( typeof( ycoords[snFlkTemp] ) == ‘number’ );
ycoords[snFlkTemp] = x / numFlakes;
}
//now animate
function flakeFall() {
if( !getRefToDivNest(‘snFlkDiv0’) ) { return; }
var scrWidth = 0, scrHeight = 0, scrollHeight = 0, scrollWidth = 0;
//find screen settings for all variations. Doing this every time allows for resizing and scrolling
if( typeof( window.innerWidth ) == ‘number’ ) { scrWidth = window.innerWidth; scrHeight = window.innerHeight; } else {
if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
scrWidth = document.documentElement.clientWidth; scrHeight = document.documentElement.clientHeight; } else {
if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
scrWidth = document.body.clientWidth; scrHeight = document.body.clientHeight; } } }
if( typeof( window.pageYOffset ) == ‘number’ ) { scrollHeight = pageYOffset; scrollWidth = pageXOffset; } else {
if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) { scrollHeight = document.body.scrollTop; scrollWidth = document.body.scrollLeft; } else {
if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) { scrollHeight = document.documentElement.scrollTop; scrollWidth = document.documentElement.scrollLeft; } }
}
//move the snowflakes to their new position
for( var x = 0; x < numFlakes; x++ ) {
if( ycoords
- * scrHeight > scrHeight – pictureHeight ) { ycoords
- = 0; }
var divRef = getRefToDivNest(‘snFlkDiv’+x); if( !divRef ) { return; }
if( divRef.style ) { divRef = divRef.style; } var oPix = document.childNodes ? ‘px’ : 0;
divRef.top = ( Math.round( ycoords
- * scrHeight ) + scrollHeight ) + oPix;
divRef.left = ( Math.round( ( ( xcoords
- * scrWidth ) – ( pictureWidth / 2 ) ) + ( ( scrWidth / ( ( numFlakes + 1 ) * 4 ) ) * ( Math.sin( lrFlakes * ycoords
- ) – Math.sin( 3 * lrFlakes * ycoords
- ) ) ) ) + scrollWidth ) + oPix;
ycoords
- += downSpeed;
}}
//DHTML handlers
function getRefToDivNest(divName) {
if( document.layers ) { return document.layers[divName]; } //NS4
if( document[divName] ) { return document[divName]; } //NS4 also
if( document.getElementById ) { return document.getElementById(divName); } //DOM (IE5+, NS6+, Mozilla0.9+, Opera)
if( document.all ) { return document.all[divName]; } //Proprietary DOM – IE4
return false;
}
window.setInterval(‘flakeFall();’,100);</script>
-------------------------------------------------
Mã code 13 kiểu chữ new, mới, hot
Các Thầy/ cô có thể thiết kế chữ nhấp nháy theo ý mình. Nếu không tự làm được, các bạn có thể copy code sau vào sau tiêu đề của bài viết là được.
Code1: ( chữ new)
<img src="http://freewebs.com/dophuongoanh/new.gif">
Code2: ( Hót)
<img src="http://ketnoibanbe.org/forum/images/icons/new.gif">
Code3: ( chữ new)
<img src="http://www.gdtd.com.vn/images/new.gif">
Code 4: ( Chữ New)
<img src="http://www.3c.com.vn/Uploaded/hoangtv/07-06-007/new_ani.gif">
Code 5: ( Mới)
<img src="http://thcsdetham.edu.vn/Home_news.gif">
Code 6: New có mũi tên
<img src="http://i242.photobucket.com/albums/ff54/trannampro/2.gif ">
Code 7: New
<img src="http://i649.photobucket.com/albums/uu213/tuongct1/icon-new.gif ">
Code 8: New nhún nhẩy
<img src="http://i649.photobucket.com/albums/uu213/tuongct1/newtrang.gif ">
Code 9: Chữ New xoay
<img src="http://www.3c.com.vn/Uploaded/hoant/Anh%20xep/new1.gif ">
Code 10: Chữ HOT
<img src="http://www.3c.com.vn/Uploaded/hoant/anh3cdotcom/image004.gif ">
Code 11: Chữ New ấn tượng
<img src="http://i649.photobucket.com/albums/uu213/tuongct1/icon-new.gif">
Code 12 Chữ New dịu mắt
<img src="http://www.vantholacviet.org/images/new.gif">
Code 13: Chữ New
<img src="http://tratu.baamboo.com/images/new.gif">







?: Rootvn Forum
hình chú ếch 2
Logged



Các ý kiến mới nhất