2021.08.29
ν‹°μŠ€ν† λ¦¬ 마우슀 κΎΈλ―ΈκΈ°

- 마우슀 μ»€μ„œ λ³€κ²½ 

 

https://www.cursors-4u.com/

 

Most Viewed Cursors For Your Website, & Computer Mouse!

Welcome To Cursors-4U.com Version 3.5 So you came looking for cursors and graphics eh? Cursors-4u.com gots plenty of cursors for your mouse pointer. We got runescape, world of warcraft, pokemon, naruto, twilight, cute, animated, cool, glitter, sexy, and so

www.cursors-4u.com

 

μ ‘μ†ν•΄μ„œ μ›ν•˜λŠ” 마우슀둜 λ³€κ²½ 

 

λ‚˜λŠ” μž‘μ€ 손가락 μ»€μ„œ 선택 

 

λ‹€μŒ μ˜΅μ…˜1을 λ³΅μ‚¬ν•΄μ„œ μŠ€ν‚¨νŽΈμ§‘-html λ“€μ–΄κ°€ <head> μ•„λž˜λΆ€λΆ„μ— λΆ™μ—¬λ„£κΈ° 

μ˜΅μ…˜2λŠ” css에 λΆ™μ—¬λ„£μœΌλ©΄ λ˜λŠ” λ“― ~_~ 

 

 

- μ»€μ„œ 효과 

http://www.mf2fm.com/rv/

 

RV's free DHTML and JavaScript text and graphic effects for your web-site

Copyright notice: All scripts are © copyright mf2fm.com. You can use them wherever and whenever you wish, however the copyright notice at the start of the script should remain intact and a link back to this page would be appreciated. The address for this

www.mf2fm.com

 

μ ‘μ†ν•΄μ„œ μ›ν•˜λŠ” 효과 μ°ΎκΈ° 

여기에 적용된 νš¨κ³ΌλŠ” mouse effect - love hearts 

 

λ³΅μ‚¬ν•΄μ„œ 마우슀 νš¨κ³Όλž‘ λ§ˆμ°¬κ°€μ§€λ‘œ html λΆ€λΆ„μ—μ„œ <head> μ•„λž˜λΆ€λΆ„μ— λΆ™μ—¬λ„£κΈ° ν•΄μ£Όλ©΄ 됨. 

 

var colours=new Array 이 λΆ€λΆ„μ—μ„œ μƒ‰μƒμ½”λ“œ λ³€κ²½ν•˜λ©΄ 되고 

var minisize=xx; // 제일 μž‘μ€ μ‚¬μ΄μ¦ˆ 
var maxisize=xx; // 제일 큰 μ‚¬μ΄μ¦ˆ μž…λ ₯,
var hearts=xx 뿌렀질 ν•˜νŠΈ 갯수 μ‘°μ • 

 

 

더보기

<script type="text/javascript"> 
// <![CDATA[ 
var colours=new Array('#A3E7D8', '#FFDDDD', '#F7F5FE', '#FFFF88', '#FDB4BF', '#B3B3D9'); // colours of the hearts 
var minisize=10; // smallest size of hearts in pixels 
var maxisize=13; // biggest size of hearts in pixels 
var hearts=59; // maximum number of hearts on screen 
var over_or_under="over"; // set to "over" for hearts to always be on top, or "under" to allow them to float behind other objects 
/***************************** 
*JavaScript Love Heart Cursor* 
*  (c)2013+ mf2fm web-design * 
*   http://www.mf2fm.com/rv  * 
*  DON'T EDIT BELOW THIS BOX * 
*****************************/ 
var x=ox=400; 
var y=oy=300; 
var swide=800; 
var shigh=600; 
var sleft=sdown=0; 
var herz=new Array(); 
var herzx=new Array(); 
var herzy=new Array(); 
var herzs=new Array(); 
var kiss=false; 
if (typeof('addRVLoadEvent')!='function') function addRVLoadEvent(funky) { 
   var oldonload=window.onload; 
   if (typeof(oldonload)!='function') window.onload=funky; 
   else window.onload=function() { if (oldonload) oldonload(); funky(); } 

addRVLoadEvent(mwah); 
function mwah() { if (document.getElementById) { 
 var i, heart; 
 for (i=0; i<hearts; i++) { 
 heart=createDiv("auto", "auto"); 
 heart.style.visibility="hidden"; 
        heart.style.zIndex=(over_or_under=="over")?"1001":"0"; 
        heart.style.color=colours[i%colours.length]; 
        heart.style.pointerEvents="none"; 
        if (navigator.appName=="Microsoft Internet Explorer") heart.style.filter="alpha(opacity=75)"; 
        else heart.style.opacity=0.75; 
        heart.appendChild(document.createTextNode(String.fromCharCode(9829))); 
        document.body.appendChild(heart); 
        herz[i]=heart; 
        herzy[i]=false; 
   } 
   set_scroll(); 
   set_width(); 
   herzle(); 
}} 
function herzle() { 
   var c; 
   if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) { 
        ox=x; 
        oy=y; 
        for (c=0; c<hearts; c++) if (herzy[c]===false) { 
          herz[c].firstChild.nodeValue=String.fromCharCode(9829); 
             herz[c].style.left=(herzx[c]=x-minisize/2)+"px"; 
             herz[c].style.top=(herzy[c]=y-minisize)+"px"; 
             herz[c].style.fontSize=minisize+"px"; 
          herz[c].style.fontWeight='normal'; 
             herz[c].style.visibility='visible'; 
             herzs[c]=minisize; 
             break; 
        } 
   } 
   for (c=0; c<hearts; c++) if (herzy[c]!==false) blow_me_a_kiss(c); 
   setTimeout("herzle()", 40); 

document.onmousedown=pucker; 
document.onmouseup=function(){clearTimeout(kiss);}; 
function pucker() { 
   ox=-1; 
   oy=-1; 
   kiss=setTimeout('pucker()', 100); 

function blow_me_a_kiss(i) { 
   herzy[i]-=herzs[i]/minisize+i%2; 
   herzx[i]+=(i%5-2)/5; 
   if (herzy[i]<sdown-herzs[i] || herzx[i]<sleft-herzs[i] || herzx[i]>sleft+swide-herzs[i]) { 
        herz[i].style.visibility="hidden"; 
        herzy[i]=false; 
   } 
   else if (herzs[i]>minisize+2 && Math.random()<.5/hearts) break_my_heart(i); 
   else { 
        if (Math.random()<maxisize/herzy[i] && herzs[i]<maxisize) herz[i].style.fontSize=(++herzs[i])+"px"; 
        herz[i].style.top=herzy[i]+"px"; 
        herz[i].style.left=herzx[i]+"px"; 
   } 

function break_my_heart(i) { 
   var t; 
   herz[i].firstChild.nodeValue=String.fromCharCode(9676); 
   herz[i].style.fontWeight='bold'; 
   herzy[i]=false; 
   for (t=herzs[i]; t<=maxisize; t++) setTimeout('herz['+i+'].style.fontSize="'+t+'px"', 60*(t-herzs[i])); 
   setTimeout('herz['+i+'].style.visibility="hidden";', 60*(t-herzs[i])); 

document.onmousemove=mouse; 
function mouse(e) { 
   if (e) { 
        y=e.pageY; 
        x=e.pageX; 
   } 
   else { 
        set_scroll(); 
        y=event.y+sdown; 
        x=event.x+sleft; 
   } 

window.onresize=set_width; 
function set_width() { 
   var sw_min=999999; 
   var sh_min=999999; 
   if (document.documentElement && document.documentElement.clientWidth) { 
        if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth; 
        if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight; 
   } 
   if (typeof(self.innerWidth)=='number' && self.innerWidth) { 
        if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth; 
        if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight; 
   } 
   if (document.body.clientWidth) { 
        if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth; 
        if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight; 
   } 
   if (sw_min==999999 || sh_min==999999) { 
        sw_min=800; 
        sh_min=600; 
   } 
   swide=sw_min; 
   shigh=sh_min; 

window.onscroll=set_scroll; 
function set_scroll() { 
   if (typeof(self.pageYOffset)=='number') { 
        sdown=self.pageYOffset; 
        sleft=self.pageXOffset; 
   } 
   else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) { 
        sdown=document.body.scrollTop; 
        sleft=document.body.scrollLeft; 
   } 
   else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) { 
        sleft=document.documentElement.scrollLeft; 
        sdown=document.documentElement.scrollTop; 
   } 
   else { 
        sdown=0; 
        sleft=0; 
   } 

function createDiv(height, width) { 
   var div=document.createElement("div"); 
   div.style.position="absolute"; 
   div.style.height=height; 
   div.style.width=width; 
   div.style.overflow="hidden"; 
   div.style.backgroundColor="transparent"; 
   return (div); 

// ]]> 
</script>