Jump to content

mfred

User
  • Posts

    38
  • Joined

  • Last visited

  • Days Won

    1

mfred last won the day on June 19 2012

mfred had the most liked content!

About mfred

  • Birthday 11/01/1985

Information

  • Sex
    Мужчина
  • From
    РМ

Contacts

  • Web site
    http://kinogo.in/
  • Skype
    mr_mfred

mfred's Achievements

Explorer

Explorer (1/14)

8

Reputation

  1. mfred

    Footer в Chrome

    в #wrap добавить overflow: hidden; в footer убрать margin-top: -60px;
  2. в body text-align: center; ну или заключить в еще один див и там это установить. ну и в #container добавить text-align: left;
  3. Тему можно закрыть, нашел работу.
  4. Сделайте id=form шириной как текстера
  5. работает var array = new Array(); var speed = 10; var timer = 10; // Loop through all the divs in the slider parent div // // Calculate seach content divs height and set it to a variable // function slider(target,showfirst) { var slider = document.getElementById(target); var divs = slider.getElementsByTagName('div'); var divslength = divs.length; for(i = 0; i < divslength; i++) { var div = divs[i]; var divid = div.id; if(divid.indexOf("header") != -1) { div.onclick = new Function("processClick(this)"); } else if(divid.indexOf("content") != -1) { var section = divid.replace('content-',''); array.push(section); div.maxh = div.offsetHeight; if(showfirst == 1 && i == 1) { div.style.display = 'block'; } else { div.style.display = 'none'; } } } } // Process the click - expand the selected content and collapse the others // function processClick(div) { var catlength = array.length; for(i = 0; i < catlength; i++) { var section = array[i]; var head = document.getElementById('header-' + section); var cont = 'content-' + section; var contdiv = document.getElementById(cont); clearInterval(contdiv.timer); if(head == div && contdiv.style.display == 'none') { contdiv.style.height = '0px'; contdiv.style.display = 'block'; initSlide(cont,1); } else if(contdiv.style.display == 'block') { initSlide(cont,-1); } } } // Setup the variables and call the slide function // function initSlide(id,dir) { var cont = document.getElementById(id); var maxh = cont.maxh; cont.direction = dir; cont.timer = setInterval("slide('" + id + "')", timer); } // Collapse or expand the div by incrementally changing the divs height and opacity // function slide(id) { var cont = document.getElementById(id); var maxh = cont.maxh; var currheight = cont.offsetHeight; var dist; if(cont.direction == 1) { dist = (Math.round((maxh - currheight) / speed)); } else { dist = (Math.round(currheight / speed)); } if(dist <= 1) { dist = 1; } cont.style.height = currheight + (dist * cont.direction) + 'px'; cont.style.opacity = currheight / cont.maxh; cont.style.filter = 'alpha(opacity=' + (currheight * 100 / cont.maxh) + ')'; if(currheight < 2 && cont.direction != 1) { cont.style.display = 'none'; clearInterval(cont.timer); } else if(currheight > (maxh - 2) && cont.direction == 1) { clearInterval(cont.timer); } }
  6. В плагинах посмотрите.
  7. У вас заголовк на них налазиет.
  8. дайте полностью скрипт и страницу, помогу решить.
  9. У вас наверное стоит дополнение "Html Validator", отключите его.
  10. Ну вроде если поменять var section = divid.replace('-content',''); на var section = divid.replace('content-',''); var cont = section + '-content'; на var cont = section + 'content-'; var head = document.getElementById(section + '-header'); на var head = document.getElementById(section + 'header-'); должно работать
  11. я вот это начал смотреть http://krasview.ru/channel/poliglot, пока меня хватило на 2 видоса.
  12. я все еще свободен
  13. так div поставь и во всех живах должен стать нужный текст, а это большая часть а мож и вся
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy