HTML CSS Reference/HTML Attributes Reference/lowsrc

Материал из Web эксперт
Перейти к: навигация, поиск

"lowsrc" Example

   <source lang="html4strict">
   

<HTML> <head><Title>Example For lowsrc</Title></head> <BODY> <img lowsrc="http://www.wbex.ru/style/logo.png"

    src="http://www.wbex.ru/style/logo.png" 
    alt="http://www.wbex.ru" 
    width="100" 
    height="100">

<input type="image"

      lowsrc="http://www.wbex.ru/style/logo.png" 
      src="http://www.wbex.ru/style/logo.png">

</BODY> </HTML>


     </source>
   
  


lowsrc is applied to

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | Applied_To |<img> <input> | | |<input type="image"> | +----------------+--------------------------------------------------------------+

     </source>
   
  


"lowsrc" Syntax and Note

   <source lang="html4strict">

Note:

Give the URL of a low-resolution image that resides in the <img> or <input> elements. This image is displayed while the real image is being downloaded.

Syntax:

<element lowsrc="value">


     </source>