Jump to content
  • 0

Виджет "Forismatic"


Alter_Ego
 Share

Question

Привет. А как поставить себе на сайт виджет forismatic, как на яндексе (скриншот)? У них на сайте смотрел, но там не понял многое

b4808428f657b0a2d7089f9b7c50a6ce.jpg

P.S. Зашел на их api - http://api.forismatic.com/api/1.0/, но там пишет "Error: wrong method.". Почему ошибка?

Cпасибо!

Edited by Alter_Ego
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Проще набрать кучу цитат и высвечивать случайную

Варианты реализации:

PHP


<?php
$f_contents = file("slogans.txt");
$line = $f_contents[array_rand ($f_contents)];
print $line;
?>

Цитата - это строчка в файле slogans.txt

JS


var r_text = new Array ();
r_text[0] = "Нравственность крепнет, когда дряхлеет плоть.";
r_text[1] = "Целомудренна та, которую никто не пожелал.";
r_text[2] = "Лучше когда тебя потом простят, чем не заметят.";
r_text[3] = "Хороший поцелуй стоит еще одного.";
r_text[4] = "Один хороший поворот приносит большую часть одеяла.";
r_text[5] = "Любовь, деньги и заботы скрыть невозможно. ";
r_text[6] = "Из близких отношений происходят дети.";
var i = Math.round(6*Math.random());
document.write(r_text[i]);

Вместо данных можно вписать свои цитаты. Если цитат будет больше семи, то число в девятой строке надо будет изменить.

Что непонятно могу обьяснить Edited by ctpz
Link to comment
Share on other sites

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • 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