Есть приложение называется Static HTML, в которое можно вставлять HTML код.
Есть шаблон, который специально предназначен для такой вкладки, т.к. размеры подогнаны под 520 на 800 пикселей. Style.css и изображения храняться на гугл сайтс (т.к. в фейсбуке требуется HTTPS соединение)
вставляю в приложение, HTML код файла index.html в котором прописаны ссылки на стайл ксс и ссылки на изображение.
Нажимаю просмотреть и...в файрфоксе отображается корректно, а в опере, хроме, ослике все расползается. Не знаю в чем причина. подскажите.
Это же участь постигла и слайдер, который я пытаюсь вставить здесь
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Business Group | We Care About Your Business</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <link rel="stylesheet" href="https://sites.google.com/site/biznesshablon/style.css" type="text/css" media="screen"/>
/** mouseenter function for the items the timeout is used to prevent this event to trigger if the user moves the mouse with a considerable speed through the menu items */ function m_enter(){ var $this = $(this); clearTimeout(menu_time); menu_time = setTimeout(function(){ //img $this.find('img').stop().animate({'top':'0px'},400); //cc_submenu ul $this.find('.cc_submenu > ul').stop().animate({'height':'151px'},400); },200); }
//mouseleave function for the items function m_leave(){ var $this = $(this); clearTimeout(menu_time); //img $this.find('img').stop().animate({'top':'-700px'},400); //cc_submenu ul $this.find('.cc_submenu > ul').stop().animate({'height':'0px'},400); }
//back to menu button - unfolds the menu $('#cc_back').bind('click',unfold);
/** hides all the menu items except the clicked one after that, the content is shown */ function fold($li_e){ var $item = $li_e.closest('.cc_item');
var d = 100; var step = 0; $items.unbind('mouseenter mouseleave'); $items.not($item).each(function(){ var $item = $(this); $item.stop().animate({ 'marginLeft':'-130px' },d += 200,function(){ ++step; if(step == cnt_items-1){ folded = true; showContent($li_e.attr('class')); } }); }); }
/** shows all the menu items also hides any item's image / submenu that might be displayed */ function unfold(){ $('#cc_content').stop().animate({'left':'-140px'},600,function(){ var d = 100; var step = 0; $items.each(function(){ var $item = $(this);
//function to show the content function showContent(idx){ $('#cc_content').stop().animate({'left':'130px'},200,function(){ $(this).find('.'+idx).fadeIn(); }); }
//function to hide the content function hideContent(){ $('#cc_content').find('div').hide(); } }); </script> </div> </div> </body> </html>
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
Syndicate221
Здравствуйте!
Помогите пожалуйста понять, что я делаю не так.
Есть приложение называется Static HTML, в которое можно вставлять HTML код.
Есть шаблон, который специально предназначен для такой вкладки, т.к. размеры подогнаны под 520 на 800 пикселей. Style.css и изображения храняться на гугл сайтс (т.к. в фейсбуке требуется HTTPS соединение)
вставляю в приложение, HTML код файла index.html в котором прописаны ссылки на стайл ксс и ссылки на изображение.
Нажимаю просмотреть и...в файрфоксе отображается корректно, а в опере, хроме, ослике все расползается. Не знаю в чем причина. подскажите.
Это же участь постигла и слайдер, который я пытаюсь вставить здесь
Вот ссылка на вкладку которая отображает шаблон.
вот сам код:
Link to comment
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.