Insert creeping line into html. Web design and search engine optimization. How to insert an image into the creeping line

And everyone is running, running! And the line runs. Stop! Which line is running? Of course, running and, of course, in front of the eyes of users on someone else's site. And you want one for yourself? It doesn't matter, now we will learn how to make a creeping line on our own.

Who is running and where?

A creeping line is a text of a certain length that makes a translational or uniform movement to either side on a certain area of ​​the page. Variations on the theme of the rhythm of the movement of the text in the scrolling line are also possible.

It sounds boring, but it looks a lot more fun.

The running line for the site was popular a few years ago. Then it was used as a news feed or to display advertising texts. The main problem such a line was its constancy, which soon became boring.

The point is that to replace the running text, it was often necessary to climb into the html code of the site and change it to a new one. It is clear that they did not do this very often.

Today, the whole process has become much easier. If we talk about CMS, many specialized plugins have been written for them that greatly simplify the implementation of the creeping line.

Nowadays, most of the animation on the Internet is created using flash technology, and crawling text in web design is considered almost "vintage". But all the same, the words running before our eyes have not lost their primordial beauty.

Creeping line can be used as a signboard for the name of the site or its section. It is also ideal for posting some clever thought, which can be another way to attract attention from site visitors.

Creeping line written in html

Running line on the html site is the easiest way to implement it with wide range for creativity.

The tag is responsible for the movement of text in html ... Its syntax is:

< marquee >text

This tag has many meanings and attributes:

1) direction - sets the direction of movement of the text. Possible attribute values:

  • left- to the right side;
  • right - left;
  • up - up;
  • down - down;

2) behavior - is responsible for the type of scrolling. Accepted values:

  • scroll - movement of the text in one direction;
  • slide - one-time movement followed by a stop ( pop-up text);
  • alternate - in the given direction and back.

3) loop - determines the number of loop repetitions. Possible values:

  • infinite - an infinite number of cycles ( default value).
  • Integer.

4) scrollamount - sets the speed of the creeping line. Accepts an integer value.

5) width - the length of the moving area is set.

6) height - the height of the moving area is set.

7) scrolldelay - sets the delay time between cycles in milliseconds.

The rest of the tag attributes are common style for all elements of the hypertext language.

The tag was created specifically for Internet browser Explorer. Until recently, it was not accepted by some other browsers, but now everyone sees it.

And if you play around with the code a little, you can make not only the text move, but also the picture. And this is already First level animation, gentlemen!

Here's the code for this example:

Edrit Madrid! Where is taking me !!!

Creeping line for Joomla

For CMS-based site owners, the above example will not work. More precisely, it will do, but you need to know where you can "stick" this example into the html code. And this is not easy.

All CMS are built on php based which is a server-side programming language. It is on it that the code responsible for generating the site pages is written. That is, each element of the site page ("footer", "header") is generated during the execution of the code. So edit php code your site on the CMS is not worth it.

Running line for joomla can be implemented by installing special plugins. One of them is called Moving Text. Let's consider its installation step by step:

1. Go to your Joomla control panel. Through the top menu item "Extensions" go to " Extension manager».
2. On the "Installation" tab of the manager, select the download option and click on the "Install" button:

3. Then go to " Plugin manager».
4. In the list below we find the required plugin. We mark it and click on the "Change" button at the top. Next to it is the "Enable" button, which is used to activate the extension:

5. In the next window in the fields " main parameters»Set the parameters for displaying the creeping line ( length, speed and interval between cycles). After making changes, do not forget to click on the "Save" button (top right).
6. Then through the main menu item "Materials" go to " Material manager". In the lower list, tick the required material and click on the "Change" button ( circle with a pencil).
7. In the editor, click on the "html" button. The code editor window will open on the screen. Insert there (text = Desired text). Instead of "Required text", write what we need, and click on "Update":

After that, a creeping line will appear in the edited material:

Other creeping line implementations

Running text can be implemented not only with using html and installing plugins. A javascript implementation is considered a good option. Here's an example of how it works:

Here is a piece of code that goes into the tag :

And here is a piece of script that needs to be placed in the place where the scrolling line is displayed:

You can also implement running text using the jquery library:

The example code is shown in full. If desired, css, jquery and html can be split into separate files:

A line with text for displaying some important ad on the site.

What's the bottom line?

As you can see from the examples, of all the creeping line implementations, the html version is the most "lightweight" one. And its functionality is much easier to understand and master. But this implementation is not suitable for CMS sites. There are only plugins left for them.

Ticker

Ticker formed with an opening tag and closing(closing tag is required).

width = ″… ″ - the width of the scrolling line in pixels or as a percentage of the screen width.

Height = ″… ″ - the height of the creeping line in pixels or percent. (If you make a creeping line in one line, then you can not specify the height, it itself is selected to the size of the letters).

bgcolor = ″… ″ - defines the background color of the crawl line.

behavior = ″… ″ specifies the type of movement (behavior) of the scrolling line and has the following values

scroll - cyclic scrolling of the text from one end to the other

slide - the text appears at one edge and stops at the other.

alternate - the text moves from one edge to the other and back.

direction = ″… ″ - defines the direction of movement of the scrolling line. Has the following meanings:

left - the text moves to the left along the line

right - the text moves to the right along the line

up - the entire line moves from bottom to top

down - the line moves from top to bottom

scrollamount = ″… ″ - step of movement in a line in pixels, by which the text is moved within a specified time interval. For example

scrollamount = ″ 1 ″

scrollamount = ″ 2 ″

scrollamount = ″ 3 ″

scrolldelay = ″… ″ - This attribute sets the time interval between the steps of the scrolling line in milliseconds. For example

scrolldelay = ″ 100 ″

scrolldelay = ″ 200 ″

scrolldelay = ″ 300 ″

loop = ″… ″ - sets the number of scrolling text passes. By default, or when set to -1 (infinite), the browser will scroll the text an infinite number of times.

hspace = ″… ″ - This attribute sets the margin in pixels to the right and left of the crawl line.

hspace = ″ 10 ″

hspace = ″ 0 ″

vspace = ″… ″ - This attribute sets the indentation in pixels above and below the crawl line.

hspace = ″ 0 ″

hspace = ″ 10 ″

Center is placed at the beginning of the code and
closing tag at the end of the code.

HTML - creeping line codes


Insert your text here


Insert your text here

scrollamount = "1"> Your text


Your text

scrollamount = "3"> Your text


Your text

scrollamount = "30"> THANKS for your subscription!


THANKS for your subscription!

direction = "right"> your running text


your running text

direction = "right"> your running text


your running text

behavior = "alternate"> your message here


your message here

height = "50" direction = "up"> your running
text


your running text

bgcolor = "silver"> your running text


your running text

direction = "right" bgcolor = "# color"
width = "300"> your running text


your running text

width = "100"> your running text


your running text

width = "100" style = "border: 2px dotted deeppink;"> your
running text


your running text

direction = "left" bgcolor = "silver"
width = "300"> your text here


your text here

bgcolor = "aqua" width = "25%"
direction = "right"> your exciting message here


your exciting message here

direction = "up" scrollamount = "1" height = "150"
style = "filter: wave (add = 1, phase = 10, freq = 2, strength = 300);
colortag = "red";> Thank you for visiting the site!


Thank you for visiting the site!

YOUR TEXT article comments
YOUR TEXT article comments

<
Often when writing your site, or managing it, there is a need to install a creeping line on the site. Such a design element draws the attention of visitors to the necessary sections of the site, and can also highlight certain information in the foreground, which will make it possible to first view the desired topic.

Use creeping line for various purposes, for example, for advertising messages, news, promotions, announcements, images, emoticons, banners, etc.

Creating a creeping line on a website is as easy as shelling pears.

To create a creeping line, use this special "marquee" tag, which will help you make a creeping line. Initially it only worked in the browser Internet Explorer, but now in almost all browsers. (I did not check only in Google Chrome), in the rest it works fine.

1. The STANDARD TRACKING LINE is as follows -:

Running text

Insert a headline, greeting, announcement, between these tags (INSTEAD OF MY WORDS "FLOWING TEXT"), and you will get a creeping line. It will look like this.

WE DO A RUNNING LINE

Creeping line can be not only text, but also a picture and a link to some site. It can be any text that you create on sites that create beautiful inscriptions. Like the "burning text" in the previous post.

The text can be formatted in the same way as in a simple post. For example, let's make it big, bold, colored, italic, and so on.

And by showing imagination, or by defining goals for using texts in your diary, you can come up with some pretty incredible options for writing creeping lines for your posts.

I will try to show you the most common ones.

2. The width and height of the creeping line can be set with certain parameters, that is, set the line width and height... Now the formula will look like this.

Specified row block sizes

Where width = ""- block width for a line
height = ""- block height for a line

It will look like this.
The height and width of the line is specified.

3. CHANGE THE BACKGROUND OF THE BACKGROUND.
The background of the creeping stitch can be set to whatever you need. This is the formula. The line sizes can be omitted. I put them in the first formula, not in the second.

Change the background of the LINE

where bgcolor = ""- attribute setting the background color parameter

It looks like this

change the background of the LINE

change the background of the LINE, without specifying the width and length

4. LEFT TO RIGHT MOVEMENT.

Since by default the line moves, from right to left, then to do the opposite, we apply this formula.

Left to right movement

Where left- movement from right to left (default)
right- movement from left to right

It will look like this
LEFT TO RIGHT MOVEMENT.

5. CONSTANT MOVEMENT IN BOTH SIDES.
You can set the movement of the line constantly, that is, it will move alternately in both directions .. This is the formula.

where alternate

It will look like this
CONSTANT MOVEMENT IN BOTH SIDES

6. MOVING BOTTOM UP.
A line, or an image, can move not only in different directions, but also from bottom to top. It is better to put a limit on the line, (especially the height) or pictures, otherwise it will run all over the page and take up a lot of space. This is the formula.

> bottom to top

Where up- movement from bottom to top

It will look like this

STITCH OR PICTURE MOVEMENT BOTTOM UP

7. MOVING UP AND DOWN.
You can make the text move and vice versa FROM UP AND DOWN. This is the formula.

Top down

Where down- movement from top to bottom

It will look like this
MOVEMENT OF THE STITCH OR PICTURE FROM UP AND DOWN

8. CHANGE THE MOVING SPEED TO A SLOWER.
The sewing speed can also be changed, made faster, or slower. To do this, use the following formula.

Change the speed to slow

Where behavior = ""- attribute setting the line type
alternate- reciprocating motion
direction = ""- attribute setting direction
scrollAmount = "1"

It will look like this
SLOW STITCHING SPEED

9. SLOW STITCHING UP AND DOWN AND VERSA.
You can also adjust the sewing speed up and down. To do this, use the following formula.

Slow text movement from bottom to top and vice versa


Where alternate- reciprocating motion
direction = ""- an attribute that sets the direction (in our case, from top to bottom and vice versa)
scrollAmount = "1"- sets the line speed. The speed figure can be changed.

It will look like this
slow movement of the text from bottom to top and vice versa

11. TROLLEY WITH IMAGE.
As I already wrote, not only a line can move, but also any picture. All of the above formulas are also applicable to pictures. Only instead of WORDS, the HTML code of the picture is inserted. This is the formula to which you can add any motion parameters.

Original picture.

Let's add a creeping line formula, and it will look like this

These are simple examples of creeping lines, and with your imagination, you can come up with some pretty incredible options for writing creeping lines for your sites.

I will write ALL THESE FORMULAS ONCE AGAIN, ALREADY with all the parameters. (that is, a new value is added to each new formula, and therefore the formula becomes longer and longer. If you do not need ALL PARAMETERS, then take the formulas above, each parameter is there separately)

SIMPLE LINE - DEFAULTDEFINED LINE SIZESCHANGE THE BACKGROUND OF THE BREAKING LINELEFT RIGHT MOVEMENTCONSTANT MOVEMENT IN BOTH SIDES
UPWARDS
TOP DOWNSLOW STITCHING SPEEDSLOW MOVEMENT OF THE TEXT UP AND DOWN AND VERSALINE WITH A LINK TO THE SITE LINK TO THE SITE (NAME)

You can remove any of these parameters yourself. For example, you do not need a separate background for each line, then you just carefully erase this parameter.

Or erase the stitch sizes. Just remember that the formula should be in the angular QUOTATION MARK, so don't remove them.

Try boldly and you will succeed.

Create creeping line on the site - as easy as shelling pears.
Use the creeping line for various purposes, for example, for advertising messages, news, promotions, announcements, etc.

To create a running line, use the tag:

Ticker Ticker

Crawl attributes

width = "..." - the width of the scrolling line (in pixels or percent).
Example:
Ticker

height = "..." - creeping line height (in pixels or percent).
Example:
Ticker

bgcolor = "..." - the background color of the crawl line (the color is set by a code or word).
Example:
Ticker

behavior = "..." creeping line behavior. Has the following meanings:

scroll - normal scrolling (default);

slide - the line begins its path from one edge and stops at the other;

alternate - the line will move from edge to edge
Example:
Ticker

direction = "..." - the direction of the scrolling line. Has the following meanings:

left - movement of the text to the left (default);

right - movement of the text to the right;

up - movement of the text from bottom to top;

down - movement of the text from top to bottom
Example:
Ticker

scrollamount = "..." - line speed (in pixels).
Example:
Ticker

scrolldelay = "..." - time interval between steps (in milliseconds).
Example:
Ticker

loop = "..." - how many times the scrolling line will run. If the value is set to "0" (Default), the running timeline will scroll the text an infinite number of times, if the value is set to "2", then the text will scroll 2 times.
Example:
Ticker

hspace = "..." - indent from the left and right edges of the creeping line (in pixels).
Example:
Ticker

If you put it all together creeping line code in HTML will look like this:

Ticker Ticker

Running image

Since we moved the text in the creeping line, so you can move the image.

Enough between tags insert picture:

Ticker

Addition

You can set the text with the link to the scrolling line. To do this, you need to write the following code in HTML:

Ticker Creeping line on a blog , because without this "chemistry" Internet Explorer 7(Must die!) Incorrectly displayed creeping line at page display scales of more than 100%.

If you make any element of the scrolling line a link, you get an interesting trick "catch me!". In our example, in order to follow the link, you need to have time to click on the red car.

Moving the creeping line can be set not only horizontally, but also vertically. In this case, as in the previous one, you can specify the dimensions of the area in which the movement will occur (attributes width and height tag respectively):

In this example, browsers have already distinguished themselves for the vertical creeping line. Firefox 3.5 and Internet Explorer 7 and 8 ... In addition to the need to insert a non-breaking space () before the beginning of the creeping line, but also the inscription "Casco" is displayed in them not in the center, but in Opera everything is fine. If you wish, you can practice using the "subtle" HTML techniques to center this label in the specified browsers.

For creeping line, you can set parameters for moving elements, which makes it easy to create original effects. Let's consider the main attributes of the tag :

  • behavior- type of movement of creeping line elements:
    - scroll- edge-to-edge in one direction (default),
    - slide- after performing the specified number of passes, the line remains at the left or right edge of the page,
    - alternate- the direction of movement is reversed after each cycle;
  • bgcolor- background color of the creeping line;
  • direction- the direction of movement of the creeping line:
    - left
    - to the left (by default),
    - right- to the right,
    - down- way down,
    - up- up;
  • height- the height of the creeping line;
  • hspace- indent from the left and right borders of the scrolling area;
  • loop- number of creeping line impressions, by default - infinite(endless) repetition;
  • scrollamount- displacement in pixels per step;
  • scrolldelay- the amount of delay in milliseconds between steps. It is used to slow down the movement of creeping line elements;
  • truespeed- the minimum value of the delay between steps, by default 60 ms;
  • vspace- vertical offset from the scrolling boundaries;
  • width- the width of the creeping line.

Text and elements inside tags ..., can be formatted in the same way as any elements of a web page.

Important note: if the length of the creeping line (text + pictures) is greater than the width of the site page, then be sure to specify the parameter width to avoid layout distortions in some browsers!

If the creeping line is repeated on several pages of the site, then it is convenient to arrange it in the form of an insert (include), which can be quickly changed. Any method of including fragments in a site page will work. One of the simplest is with JavaScript... On the page, in the place where the creeping line should be, insert
,
and place the text of the creeping line in a separate file stroka.js, which you place in the same folder as the crawl pages. Below is a variant of such a file with setting the color of the displayed text:

// Java Document
document.write (" Scrolling text");

Check that the encoding for this file is the same as that of the main page. If you are using the program Adobe dreamweaver, then to change the encoding, select the menu section Edit - Page Properties - Title / Encoding... You can also change the script encoding in Microsoft Word... To do this, open the document, set the desired encoding if it is displayed incorrectly (how to do this, see the "Word Help"), and then save it in the following way: File - Save As - Plain Text - Save... In the window that opens, you can set the required encoding.

As stated above, the tag results in invalid code. If you want to avoid this, then you can use other methods, for example, scripts JavaScript and others. This issue is discussed in detail on the site a-cto.narod.ru. An interesting version of the creeping line is also proposed there - letter-by-letter text output, which can be set for any line on the site:

To create this effect, paste the following code in the right place on the page:





.

As you can see, the author made the output of the creeping line through the form

...
, and put the text itself inside the script. To make the form fields invisible, in the arguments of the tag the style with no borders is set, and the background color matches the background of the page:
style = "width: 100%; border: 0px; background-color: #ffffee;"

The speed of displaying letters in milliseconds is set per line var speed = 150. Since the setting of the crawl line repeat interval is not provided, it can be organized, without further ado, by entering spaces after the text in the line:
var line = " Letter-by-letter creeping line ";

By using JavaScript can be done as a creeping line and the output - the name of the site page shown in the upper blue bar of the browser (see above!). To do this, insert the following code inside the tag <b><head>...</head> </b>.</p> <script>document.write("<img style='display:none;' src='//counter.yadro.ru/hit;artfast_after?t44.1;r"+ escape(document.referrer)+((typeof(screen)=="undefined")?"": ";s"+screen.width+"*"+screen.height+"*"+(screen.colorDepth? screen.colorDepth:screen.pixelDepth))+";u"+escape(document.URL)+";h"+escape(document.title.substring(0,150))+ ";"+Math.random()+ "border='0' width='1' height='1' loading=lazy loading=lazy>");</script> </div> </div> </div> </div> </div> </div> </div> </div> <div class="tm_sidebar"> <div class="sidebar_home"> <div class="gsense"> </div> <div class="sidebarwidget"> <ul> <li id="text-3" class="widget widget_text"> <div class="textwidget"> <div class="sidebar-orange">Categories</div> </div> </li> <li id="nav_menu-3" class="widget widget_nav_menu"> <div class="menu-pravoe-menyu-nizhnee-container"> <ul id="menu-pravoe-menyu-nizhnee" class="menu"> <li id="menu-item-" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-"><a href="https://zoo-mania.ru/en/category/internet/">Internet</a></li> <li id="menu-item-" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-"><a href="https://zoo-mania.ru/en/category/security/">Security</a></li> <li id="menu-item-" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-"><a href="https://zoo-mania.ru/en/category/communication/">Communication</a></li> <li id="menu-item-" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-"><a href="https://zoo-mania.ru/en/category/antivirus/">Antivirus</a></li> <li id="menu-item-" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-"><a href="https://zoo-mania.ru/en/category/graphics/">Graphics</a></li> <li id="menu-item-" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-"><a href="https://zoo-mania.ru/en/category/office-programs/">Office programs</a></li> </ul> </div> </li> </ul> </div> <div class="sidebarwidget"> <ul> <li id="text-3" class="widget widget_text"> <div class="textwidget"> <div class="sidebar-orange">Popular</div> </div> </li> <li id="nav_menu-3" class="widget widget_nav_menu"> <div class="menu-pravoe-menyu-nizhnee-container"> <ul id="menu-pravoe-menyu-nizhnee" class="menu"> <li id="menu-item-8272" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-8272"><a href="https://zoo-mania.ru/en/viewing/samsung-j-1-mini-diagonal-4-dyuima-samsung-galaxy-j1-mini---tehnicheskie-harakteristiki/">Samsung Galaxy J1 mini - Specifications</a></li> <li id="menu-item-8271" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-8271"><a href="https://zoo-mania.ru/en/phones-and-pdas/bilain-domashnii-internet-plyus-mobilnaya-svyaz-bilain-internet/">Beeline internet and television</a></li> <li id="menu-item-8270" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-8270"><a href="https://zoo-mania.ru/en/graphics/nastroika-routera-cherez-mobilnyi-modem-primenenie-wifi-routera-s-usb/">Using a WiFi Router with USB Port - Why Use It and What Can You Connect?</a></li> <li id="menu-item-8269" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-8269"><a href="https://zoo-mania.ru/en/development/denezhnye-perevody-bilain-kak-s-bilain-perevesti-dengi-na-drugoi/">How to transfer money from Beeline to another number with the "Mobile Transfer" service Transfer money from mobile to mobile Beeline</a></li> <li id="menu-item-8268" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-8268"><a href="https://zoo-mania.ru/en/cad/poshagovaya-nastroika-routera-zyxel-keenetic-start-zyxel-keenetic-start-obzor/">ZyXEL Keenetic Start: overview of functions and configuration of a Wi-Fi router</a></li> <li id="menu-item-8267" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-8267"><a href="https://zoo-mania.ru/en/antivirus/kak-otklyuchit-soobshchenie-ot-7878-perevod-deneg-s-bilaina-na-bankovskuyu/">Transferring money from a Beeline to a bank card</a></li> <li id="menu-item-8266" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-8266"><a href="https://zoo-mania.ru/en/viewing/zapret-kontenta-na-mts-chto-eto-takoe-kak-otklyuchit-kak-otklyuchit-uslugi-moi/">How to disable the services "My content" and "Content prohibition" on MTS Content providers category 11</a></li> <li id="menu-item-8265" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-8265"><a href="https://zoo-mania.ru/en/cad/smartfon-samsung-j1-mini-otzyvy-vladelcev-tehnicheskie-harakteristiki-i-osobennosti-obzor-samsu/">Samsung Galaxy J1 mini review: With minimal costs J 1 mini new model</a></li> <li id="menu-item-8264" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-8264"><a href="https://zoo-mania.ru/en/antivirus/j-1-mini-novaya-model-samsung-galaxy-j1-mini---tehnicheskie-harakteristiki/">Samsung Galaxy J1 mini - Specifications</a></li> <li id="menu-item-8262" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-8262"><a href="https://zoo-mania.ru/en/mobile-device/samyi-deshevyi-smartfon-huawei---huawei-y3-2017-samyi-deshevyi-smartfon-huawei---huawei-y3-2017/">Cheapest Huawei Smartphone - Huawei Y3 (2017) Highway Phone 3</a></li> </ul> </div> </li> </ul> </div> </div> </div> </div> <div class="footer"> <div class="footer_brick"> <div class="footer_brick_box"> <div class="footer_brick_1"> <div class="footerwidget"> <ul> </ul> </div> </div> <div class="footer_brick_3"> <div class="footerwidget"> <ul> </ul> </div> </div> </div> </div> <div class="footerin"> <div class="footerin_1"> <span>Fitting © 2021 Tech Look - Gadgets. Android device. Antiviruses. Security. Graphics. Internet. Mobile devices</span> </div> </div> </div> </div> <script> jQuery(document).ready(function() { jQuery("img.lazy").lazy(); }); </script> <script type='text/javascript'> /* <![CDATA[ */ var thickboxL10n = { "next": "\u0414\u0430\u043b\u0435\u0435 \u2192", "prev": "\u2190 \u041d\u0430\u0437\u0430\u0434", "image": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", "of": "\u0438\u0437", "close": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c", "noiframes": "\u042d\u0442\u0430 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u043f\u043b\u0430\u0432\u0430\u044e\u0449\u0438\u0445 \u0444\u0440\u0435\u0439\u043c\u043e\u0432. \u0423 \u0432\u0430\u0441 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u0442\u0435\u0433\u0438 iframe, \u043b\u0438\u0431\u043e \u0432\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u0438\u0445 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442.", "loadingAnimation": "https:\/\/zoo-mania.ru\/wp-includes\/js\/thickbox\/loadingAnimation.gif" }; /* ]]> */ </script> <script type='text/javascript' src='/wp-includes/js/thickbox/thickbox.js?ver=3.1-20121105'></script> <script type='text/javascript' src='https://zoo-mania.ru/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=4.9.2'></script> <script type='text/javascript' src='/wp-includes/js/backbone.min.js?ver=1.2.3'></script> <script type='text/javascript' src='https://zoo-mania.ru/wp-content/plugins/custom-contact-forms/wp-api/wp-api.js?ver=1.2'></script> <script type='text/javascript' src='https://zoo-mania.ru/wp-content/themes/blueblog/js/menu.js?ver=1.0'></script> <script type='text/javascript' src='https://zoo-mania.ru/wp-content/themes/blueblog/js/scrolltotop.js?ver=1.0'></script> <script type='text/javascript' src='https://zoo-mania.ru/wp-content/themes/blueblog/js/responsive_nav.js?ver=1.0'></script> <script type='text/javascript' src='https://zoo-mania.ru/wp-content/themes/blueblog/js/jquery-menuscrolltofixed.js?ver=1.0'></script> <script type='text/javascript' src='https://zoo-mania.ru/wp-content/themes/blueblog/js/search.js?ver=0.1'></script> <script type='text/javascript' src='https://zoo-mania.ru/wp-content/themes/blueblog/js/jquery.bxslider.min.js?ver=4.1'></script> <script type='text/javascript' src='https://zoo-mania.ru/wp-content/themes/blueblog/js/jquery_bxslider_min_load.js?ver=4.1'></script> <script type='text/javascript' src='https://zoo-mania.ru/wp-content/themes/blueblog/js/jquery.swipebox.js?ver=1.0'></script> <script type='text/javascript' src='https://zoo-mania.ru/wp-content/themes/blueblog/js/swipebox-ios-orientationchange-fix.js?ver=1.0'></script> <script type='text/javascript' src='https://zoo-mania.ru/wp-content/themes/blueblog/js/jquery_swipebox_min_load.js?ver=1.0'></script> <script type='text/javascript' src='https://zoo-mania.ru/wp-content/themes/blueblog/js/jquery.lazy.min.js?ver=0.1.6'></script> <script type='text/javascript' src='/wp-includes/js/wp-embed.min.js?ver=4.8.4'></script> </body> </html>