• Page 1 of 1
  • 1
UcozBaze All Scripts And Templates » Scripts and Coding » Other » Information about your browser for uCoz (Информация о вашем браузере для uCoz)
Information about your browser for uCoz
GoblinaSDate: Sunday, 2016-11-06, 10:54 PM | Message # 1
Group: S-Moderator
Messages: 380
3


How to install:

We use the following html frame and set it in the place where we want to see information about the browser.

Code
<div class="cell-your-browser">  
  <div class="your-browser-info">Ваш браузер </div>  
  <?if($USER_AGENT$='firefox')?> <a class="your-browser-ico brauzer-mf"
href="/go?http://www.mozilla.org/ru/firefox/new/"
title="http://www.mozilla.org/ru/firefox/new/" title="Скачать браузер
Mozilla Firefox" target="_blank">FireFox -
$USER_AGENT_VER$</a><?endif?>  
  <?if($USER_AGENT$='chrome')?><a class="your-browser-ico
brauzer-gx"href="/go?http://www.google.ru/chrome"
title="http://www.google.ru/chrome" title="Скачать браузер Google
Chrome" target="_blank">Chrome -
$USER_AGENT_VER$</a><?endif?>  
  <?if($USER_AGENT$='opera')?><a class="your-browser-ico
brauzer-op"href="/go?http://www.opera.com/download/"
title="http://www.opera.com/download/" title="Скачать браузер
Opera"target="_blank">Opera -
$USER_AGENT_VER$</a><?endif?>  
  <?if($USER_AGENT$='safari')?><a class="your-browser-ico
brauzer-sf"href="/go?http://www.apple.com/ru/safari/"
title="http://www.apple.com/ru/safari/" title="Скачать браузер Apple
Safari" target="_blank">Safari -
$USER_AGENT_VER$</a><?endif?>  
  <?if($USER_AGENT$='ie')?><a class="your-browser-ico
brauzer-ie"href="/go?http://windows.microsoft.com/ru-RU/internet-explorer/products/ie/home"

title="http://windows.microsoft.com/ru-RU/internet-explorer/products/ie/home"
title="Скачать браузер Internet Explorer"target="_blank">Internet
Explorer - $USER_AGENT_VER$</a><?endif?>  
  </div>


This code uses the system variables uCoz, which determine and display information about the user's browser.In the next step, we need to add styles for the script:
Code
/* Отображаем информацию ваш браузер на uCoz  
  ------------------------------------------*/  
  .cell-your-browser {  
  float:left;  
  padding: 10px;  
  font:10px Verdana,Arial,Helvetica, sans-serif;  
  }  

  .your-browser-info {  
  float:left;  
  height: 14px;  
  padding: 3px 5px 2px 0px;  
  }  

  .your-browser-ico:link,  
  .your-browser-ico:visited {  
  float:left;  
  height: 14px;  
  padding: 3px 10px 2px 25px;  
  text-shadow: 1px 1px 1px #333;  
  font-weight: 700;  
  color:#eaeaea;  
  border-radius:3px;  
  display:block;  
  text-decoration:none;  
  outline:none  
  }  

  .your-browser-ico:hover {  
  color:#eaeaea;  
  }  

  .brauzer-mf {  
  background:#555 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px 1px;  
  }  

  .brauzer-mf:hover {  
  background:#777 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px 1px;  
  }  

  .brauzer-gx {  
  background:#555 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -19px;  
  }  

  .brauzer-gx:hover {  
  background:#777 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -19px;  
  }  

  .brauzer-op {  
  background:#555 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -38px;  
  }  

  .brauzer-op:hover {  
  background:#777 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -38px;  
  }  

  .brauzer-sf {  
  background:#555 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -56px;  
  }  

  .brauzer-sf:hover {  
  background:#777 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -56px;  
  }  

  .brauzer-ie {  
  background:#555 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -74px;  
  }  

  .brauzer-ie:hover {  
  background:#777 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -74px;  
  }

After installing the CSS stylesheet, script installation is complete.


 
Message


How to install:

We use the following html frame and set it in the place where we want to see information about the browser.

Code
<div class="cell-your-browser">  
  <div class="your-browser-info">Ваш браузер </div>  
  <?if($USER_AGENT$='firefox')?> <a class="your-browser-ico brauzer-mf"
href="/go?http://www.mozilla.org/ru/firefox/new/"
title="http://www.mozilla.org/ru/firefox/new/" title="Скачать браузер
Mozilla Firefox" target="_blank">FireFox -
$USER_AGENT_VER$</a><?endif?>  
  <?if($USER_AGENT$='chrome')?><a class="your-browser-ico
brauzer-gx"href="/go?http://www.google.ru/chrome"
title="http://www.google.ru/chrome" title="Скачать браузер Google
Chrome" target="_blank">Chrome -
$USER_AGENT_VER$</a><?endif?>  
  <?if($USER_AGENT$='opera')?><a class="your-browser-ico
brauzer-op"href="/go?http://www.opera.com/download/"
title="http://www.opera.com/download/" title="Скачать браузер
Opera"target="_blank">Opera -
$USER_AGENT_VER$</a><?endif?>  
  <?if($USER_AGENT$='safari')?><a class="your-browser-ico
brauzer-sf"href="/go?http://www.apple.com/ru/safari/"
title="http://www.apple.com/ru/safari/" title="Скачать браузер Apple
Safari" target="_blank">Safari -
$USER_AGENT_VER$</a><?endif?>  
  <?if($USER_AGENT$='ie')?><a class="your-browser-ico
brauzer-ie"href="/go?http://windows.microsoft.com/ru-RU/internet-explorer/products/ie/home"

title="http://windows.microsoft.com/ru-RU/internet-explorer/products/ie/home"
title="Скачать браузер Internet Explorer"target="_blank">Internet
Explorer - $USER_AGENT_VER$</a><?endif?>  
  </div>


This code uses the system variables uCoz, which determine and display information about the user's browser.In the next step, we need to add styles for the script:
Code
/* Отображаем информацию ваш браузер на uCoz  
  ------------------------------------------*/  
  .cell-your-browser {  
  float:left;  
  padding: 10px;  
  font:10px Verdana,Arial,Helvetica, sans-serif;  
  }  

  .your-browser-info {  
  float:left;  
  height: 14px;  
  padding: 3px 5px 2px 0px;  
  }  

  .your-browser-ico:link,  
  .your-browser-ico:visited {  
  float:left;  
  height: 14px;  
  padding: 3px 10px 2px 25px;  
  text-shadow: 1px 1px 1px #333;  
  font-weight: 700;  
  color:#eaeaea;  
  border-radius:3px;  
  display:block;  
  text-decoration:none;  
  outline:none  
  }  

  .your-browser-ico:hover {  
  color:#eaeaea;  
  }  

  .brauzer-mf {  
  background:#555 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px 1px;  
  }  

  .brauzer-mf:hover {  
  background:#777 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px 1px;  
  }  

  .brauzer-gx {  
  background:#555 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -19px;  
  }  

  .brauzer-gx:hover {  
  background:#777 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -19px;  
  }  

  .brauzer-op {  
  background:#555 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -38px;  
  }  

  .brauzer-op:hover {  
  background:#777 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -38px;  
  }  

  .brauzer-sf {  
  background:#555 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -56px;  
  }  

  .brauzer-sf:hover {  
  background:#777 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -56px;  
  }  

  .brauzer-ie {  
  background:#555 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -74px;  
  }  

  .brauzer-ie:hover {  
  background:#777 url(http://art-ucoz.ru/files/hacki/7/50461424.png) no-repeat left;  
  background-position:0px -74px;  
  }

After installing the CSS stylesheet, script installation is complete.

Author - GoblinaS
Date Added - 2016-11-06 в 10:54 PM
UcozBaze All Scripts And Templates » Scripts and Coding » Other » Information about your browser for uCoz (Информация о вашем браузере для uCoz)
  • Page 1 of 1
  • 1
Search:
                                                               
Statistics Forum
New Posts Popular topic Top Forum Users New User

type list skubios siuntos (0)
type list Apklausa Jūsų Svetainei New ucoz (11)
type list elektromobilis vaikui (1)
type list Padekite del Logo (6)
type list sporto rėmimo fondas (0)
type list lazeriai klinikai (0)
type list namų apsauga - kokia? (0)
type list Begamtis tekstas ucoz (1)
type list Slenkantis Baneris ucoz (1)
type list paramos fondai (0)
type list kvepalai (0)
type list skubios siuntos per kur? (0)
type list Reikia dizaino (2)
type list kanapės, cbd (0)
type list Skaiciuojam nuo 1 iki 1000 ! (558)
type list Avatars (23)
type list Kokia svetaine kurti. (4)

type list Skaiciuojam nuo 1 iki 1000 ! (558)
type list Forum SignatureBar (60)
type list Avatars (23)
type list Juokingos Fotkes :) (19)
type list Kaip pakeisti paveiksla mazas? (19)
type list Mini-Chatas islendantis is sono ucoz (15)
type list Mp3-Tau.do.am (13)
type list Шаблон форума для ucoz For-css (12)
type list Apklausa Jūsų Svetainei New ucoz (11)
type list Ucoz script - favicon (11)
type list Megsti samp? Ateik cia (10)
type list Button scrolling up ucoz (10)
type list Slider KinoPlius Help to setup :) (10)
type list Money for the forum ucoz (9)
type list KinoPlius (9)
type list Puslapis "Atliekami techniniai darbai" Ucoz scriptas (9)
type list SexMergytes.do.am (9)
type list 11.17.2011 (9)
type list User personal Page ucoz (8)
interout
Forum Posts: 1027
Comments: 51
Reputation: 83
Rank:
GoblinaS
Forum Posts: 380
Comments: 15
Reputation: 25
Rank:
Adi
Forum Posts: 179
Comments: 11
Reputation: 23
Rank:
Esquire
Forum Posts: 147
Comments: 8
Reputation: 5
Rank:
BAtman
Forum Posts: 129
Comments: 1
Reputation: 18
Rank:
WaSHkaZ
Forum Posts: 83
Comments: 0
Reputation: 3
Rank:
Skacikas
Forum Posts: 71
Comments: 0
Reputation: 12
Rank:
meskis
Forum Posts: 51
Comments: 0
Reputation: 25
Rank:
Gytenas
Forum Posts: 51
Comments: 0
Reputation: 1
Rank:
vicka
Forum Posts: 50
Comments: 1
Reputation: 4
Rank:
karilekamo
Forum Posts: 4
Comments: 0
Reputation: 0
Rank:
zoro
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
pebotapple
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
aressvi
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
eddison_martin3
Forum Posts: 2
Comments: 0
Reputation: 0
Rank:
mariuspijunas
Forum Posts: 7
Comments: 0
Reputation: 0
Rank:
КАЙРОН
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
felfoldiartur
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
edvinasum
Forum Posts: 14
Comments: 0
Reputation: 0
Rank:
blackwolfkernel
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:


Site design by uCozBaze
uCozBaze © 2011-2016