>  기사  >  웹 프론트엔드  >  css+div及javascript应用---------鼠标经过时图片变换的两种方法_html/css_WEB-ITnose

css+div及javascript应用---------鼠标经过时图片变换的两种方法_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 12:32:241008검색

不管是鼠标经过超链接还是经过层,都可以实现

 

javascript方式:    熟悉使用document.getElementById()取得节点对象

 




.div_n {
width : 300px ;
height : 250px ;
border : 1px solid gray ;
}
style >

function  changeSrc1()
  {
  document.getElementById( " myImage " ).src = " /images/2.gif "
  }
function  changeSrc2()
  {
  document.getElementById( " myImage " ).src = " /images/1.gif "
  }
script >
head >





a >
div >
body >

html >

 


 

 

 

css+div方式:  合理控制层的样式

 


 
    New Document  title >
  
    .main {
        width : 300px ;
        height : 250px ;
        border : 1px solid gray ;
     }
    .content {
        width : 150px ;
        height : 160px ;
        border : 1px solid gray ;
        background-image : url(images/2.gif) ;
        background-repeat :  no-repeat ;
     }
    .content:hover {
        background-image : url(images/3.jpg) ;
     }
    a {
        text-decoration : none ;
     }
   style >
  head >

 
  
     div > a >
   div >
  body >
html >
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.