Понедельник, 04.08.2025, 07:16
Меню сайта
    Форма входа
    Категории раздела
    скрипты для ucoz сайта [3099]
    шаблоны для ucoz скачать [2660]
    Иконки групп для форума [25]
    Графика для сайта [1953]
    шаблоны psd для фотошопа [27]
    кисти для фотошопа [39]
    уроки фотошопа на русском языке [4]
    стили для фотошопа [3]
    шрифты для фотошопа cs4 [12]
    Web-master [3058]
    Поиск
    Календарь
    «  Апрель 2010  »
    Пн Вт Ср Чт Пт Сб Вс
       1234
    567891011
    12131415161718
    19202122232425
    2627282930
    Архив записей
    Наш опрос
    Умеете ли вы писать скрипты для ucoz?
    Всего ответов: 73
    Мини-чат
    200
    Друзья сайта
  • Официальный блог
  • Сообщество uCoz
  • FAQ по системе
  • Инструкции для uCoz
  • Статистика

    Онлайн всего: 1
    Гостей: 1
    Пользователей: 0
    Главная » 2010 » Апрель » 15 » Таблица цветов html
    22:32
    Таблица цветов html
    Создаём файл блокнотом (.txt) пихаем туда код и меняем разрешение на .html
    Code
    <html>  
    <head>  
    <title>uWebber - таблица цветов html</title>  
      <Style>  
      A:Link{ Color: #000000; Text-decoration: underline}  
      A:Visited{ Color: #000000; Text-decoration: underline}  
      A:Hover{ Color: #000000; Text-decoration: none}  
      td, body {font-family: verdana, arial, helvetica; font-size:11px;}  
      </Style>  
    <!-- HEAD START HERE -->  
    <!-- HEAD END HERE -->  
    </head>  
    <body bgcolor="#EDEDED" text="#000000" link="#000000" topmargin="0" leftmargin="0">  
    <center>  
    <!-- BODY START HERE -->  
    <center>  
    <a href=http://uwebber.ucoz.com><img src=http://uwebber.ucoz.com/design/Untitled-1.png border= 0></a>  
    <br>  
    </center>  
    <script LANGUAGE="JavaScript"><!--  

    // create 6-element array  
    var hex = new Array(6)  

    // assign non-dithered descriptors  
    hex[0] = "FF"  
    hex[1] = "CC"  
    hex[2] = "99"  
    hex[3] = "66"  
    hex[4] = "33"  
    hex[5] = "00"  

    // accept triplet string and display as background color  
    function display(triplet) {  
      // set color as background color  
      document.bgColor = '#' + triplet  

      // display the color hexadecimal triplet  
      alert('Цифровой код цвета фона = ' + triplet)  
    }  

    // draw a single table cell based on all descriptors  
    function drawCell(red, green, blue) {  
      // open cell with specified hexadecimal triplet background color  
      document.write('<TD BGCOLOR="#' + red + green + blue + '">')  

      // open a hypertext link with javascript: scheme to call display function  
      document.write('<A HREF="javascript:display(\'' + (red + green + blue) + '\')">')  

      // print transparent image (use any height and width)  
      document.write('<IMG SRC="place.gif" BORDER=0 HEIGHT=12 WIDTH=12>')  

      // close link tag  
      document.write('</A>')  

      // close table cell  
      document.write('</TD>')  
    }  

    // draw table row based on red and blue descriptors  
    function drawRow(red, blue) {  
      // open table row  
      document.write('<TR>')  

      // loop through all non-dithered color descripters as green hex  
      for (var i = 0; i < 6; ++i) {  
      drawCell(red, hex[i], blue)  
      }  

      // close current table row  
      document.write('</TR>')  
    }  

    // draw table for one of six color cube panels  
    function drawTable(blue) {  
      // open table (one of six cube panels)  
      document.write('<TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0>')  

      // loop through all non-dithered color descripters as red hex  
      for (var i = 0; i < 6; ++i) {  
      drawRow(hex[i], blue)  
      }  

      // close current table  
      document.write('</TABLE>')  
    }  

    // draw all cube panels inside table cells  
    function drawCube() {  
      // open table  
      document.write('<TABLE CELLPADDING=5 CELLSPACING=0 BORDER=1><TR>')  

      // loop through all non-dithered color descripters as blue hex  
      for (var i = 0; i < 6; ++i) {  
      // open table cell with white background color  
      document.write('<TD BGCOLOR="#FFFFFF">')  

      // call function to create cube panel with hex[i] blue hex  
      drawTable(hex[i])  

      // close current table cell  
      document.write('</TD>')  
      }  

      // close table row and table  
      document.write('</TR></TABLE>')  
    }  

    // call function to begin execution  
    drawCube()  

    // --></script>  
    <!-- BODY END HERE -->  
    <br>  
    </body>  
    </html>

    Источник: http://uwebber.ucoz.com
    Категория: скрипты для ucoz сайта | Просмотров: 381 | Добавил: AntonJkeeee | Рейтинг: 0.0/0
    Всего комментариев: 0
    Добавлять комментарии могут только зарегистрированные пользователи.
    [ Регистрация | Вход ]