• Page 1 of 1
  • 1
UcozBaze All Scripts And Templates » Scripts and Coding » Other » Duplicate CSS Effect ucoz (Duplicate CSS Effect ucoz)
Duplicate CSS Effect ucoz
GoblinaSDate: Sunday, 2011-09-11, 9:26 PM | Message # 1
Group: S-Moderator
Messages: 380
3
Duplicate CSS Effect


HTML:

Code
<div id="animationWrapper">
       <a href="/">
        <span class="span1">Only</span>
        <span class="span2">Free</span>
        <span class="span3">uCoz</span>
        <span class="span4">Templates</span>
       </a>
</div>


CSS:

Code
/* entire wrapper */
#animationWrapper  {
       width:300px;
       font-family:"proxima-nova-1","proxima-nova-2","Helvetica Neue","Arial",sans-serif;
       background:#222;
       padding:40px;
}

/* link which encapsulates SPANs */
#animationWrapper a {
       font-weight: 800;
       text-transform: uppercase;
       font-size: 42px;
       line-height: 0.9em;
       margin-bottom: 10px;
       display: block;
       position: relative;
       color: #E58;
       text-decoration: none
}

/* span and a - "workers" */
#animationWrapper a, #animationWrapper span {
       -webkit-transition: all 0.12s ease-out;
       -moz-transition: all 0.12s ease-out;
       -o-transition: all 0.12s ease-out;
       -ms-transition: all 0.12s ease-out;
       transition: all 0.12s ease-out;
}

#animationWrapper span {
       display: block;
       color: #555;
       text-shadow: 1px 1px black, 2px 2px black, 3px 3px black, 4px 4px black, 5px 5px black, 6px 6px black, 7px 7px black, 8px 8px black;
}

/* special size for the first item */
#animationWrapper .span1 {
       font-size: 76px;
       line-height: 0.8em;
}

#animationWrapper a:hover {
         color: #fff ;
         top: -3px;
         left: -3px;
}

/* all spans become white */
#animationWrapper a:hover span {
       color:#fff;
}

/* different colors for each SPAN */
#animationWrapper a:hover .span1 {
         text-shadow: 1px 1px #58E, 2px 2px #58E, 3px 3px #58E, 4px 4px #58E, 5px 5px #58E, 6px 6px #58E, 7px 7px #58E, 8px 8px #58E, 9px 9px #58E, 10px 10px #58E, 11px 11px #58E;
}

#animationWrapper a:hover .span2 {
         text-shadow: 1px 1px #F90, 2px 2px #F90, 3px 3px #F90, 4px 4px #F90, 5px 5px #F90, 6px 6px #F90, 7px 7px #F90, 8px 8px #F90, 9px 9px #F90, 10px 10px #F90, 11px 11px #F90;
}

#animationWrapper a:hover .span3 {
         text-shadow: 1px 1px #3C7, 2px 2px #3C7, 3px 3px #3C7, 4px 4px #3C7, 5px 5px #3C7, 6px 6px #3C7, 7px 7px #3C7, 8px 8px #3C7, 9px 9px #3C7, 10px 10px #3C7, 11px 11px #3C7;
}

#animationWrapper a:hover .span4 {
         text-shadow: 1px 1px #E58, 2px 2px #E58, 3px 3px #E58, 4px 4px #E58, 5px 5px #E58, 6px 6px #E58, 7px 7px #E58, 8px 8px #E58, 9px 9px #E58, 10px 10px #E58, 11px 11px #E58;
}


 
Message
Duplicate CSS Effect


HTML:

Code
<div id="animationWrapper">
       <a href="/">
        <span class="span1">Only</span>
        <span class="span2">Free</span>
        <span class="span3">uCoz</span>
        <span class="span4">Templates</span>
       </a>
</div>


CSS:

Code
/* entire wrapper */
#animationWrapper  {
       width:300px;
       font-family:"proxima-nova-1","proxima-nova-2","Helvetica Neue","Arial",sans-serif;
       background:#222;
       padding:40px;
}

/* link which encapsulates SPANs */
#animationWrapper a {
       font-weight: 800;
       text-transform: uppercase;
       font-size: 42px;
       line-height: 0.9em;
       margin-bottom: 10px;
       display: block;
       position: relative;
       color: #E58;
       text-decoration: none
}

/* span and a - "workers" */
#animationWrapper a, #animationWrapper span {
       -webkit-transition: all 0.12s ease-out;
       -moz-transition: all 0.12s ease-out;
       -o-transition: all 0.12s ease-out;
       -ms-transition: all 0.12s ease-out;
       transition: all 0.12s ease-out;
}

#animationWrapper span {
       display: block;
       color: #555;
       text-shadow: 1px 1px black, 2px 2px black, 3px 3px black, 4px 4px black, 5px 5px black, 6px 6px black, 7px 7px black, 8px 8px black;
}

/* special size for the first item */
#animationWrapper .span1 {
       font-size: 76px;
       line-height: 0.8em;
}

#animationWrapper a:hover {
         color: #fff ;
         top: -3px;
         left: -3px;
}

/* all spans become white */
#animationWrapper a:hover span {
       color:#fff;
}

/* different colors for each SPAN */
#animationWrapper a:hover .span1 {
         text-shadow: 1px 1px #58E, 2px 2px #58E, 3px 3px #58E, 4px 4px #58E, 5px 5px #58E, 6px 6px #58E, 7px 7px #58E, 8px 8px #58E, 9px 9px #58E, 10px 10px #58E, 11px 11px #58E;
}

#animationWrapper a:hover .span2 {
         text-shadow: 1px 1px #F90, 2px 2px #F90, 3px 3px #F90, 4px 4px #F90, 5px 5px #F90, 6px 6px #F90, 7px 7px #F90, 8px 8px #F90, 9px 9px #F90, 10px 10px #F90, 11px 11px #F90;
}

#animationWrapper a:hover .span3 {
         text-shadow: 1px 1px #3C7, 2px 2px #3C7, 3px 3px #3C7, 4px 4px #3C7, 5px 5px #3C7, 6px 6px #3C7, 7px 7px #3C7, 8px 8px #3C7, 9px 9px #3C7, 10px 10px #3C7, 11px 11px #3C7;
}

#animationWrapper a:hover .span4 {
         text-shadow: 1px 1px #E58, 2px 2px #E58, 3px 3px #E58, 4px 4px #E58, 5px 5px #E58, 6px 6px #E58, 7px 7px #E58, 8px 8px #E58, 9px 9px #E58, 10px 10px #E58, 11px 11px #E58;
}

Author - GoblinaS
Date Added - 2011-09-11 в 9:26 PM
ernaniDate: Thursday, 2014-05-22, 5:04 AM | Message # 2
Group: UcozBaze Team
Messages: 1
0
HTML:

Code
<div id="animationWrapper">       <a href="/">
<span class="span1">Only</span>
<span class="span2">Free</span>
<span class="span3">uCoz</span>
<span class="span4">Templates</span>
</a>
</div>

CSS:
/* entire wrapper */
#animationWrapper  {
width:300px;
font-family:"proxima-nova-1","proxima-nova-2","Helvetica Neue","Arial",sans-serif;
background:#222;
padding:40px;
}

/* link which encapsulates SPANs */
#animationWrapper a {
font-weight: 800;
text-transform: uppercase;
font-size: 42px;
line-height: 0.9em;
margin-bottom: 10px;
display: block;
position: relative;
color: #E58;
text-decoration: none
}

/* span and a - "workers" */
#animationWrapper a, #animationWrapper span {
-webkit-transition: all 0.12s ease-out;
-moz-transition: all 0.12s ease-out;
-o-transition: all 0.12s ease-out;
-ms-transition: all 0.12s ease-out;
transition: all 0.12s ease-out;
}

#animationWrapper span {
display: block;
color: #555;
text-shadow: 1px 1px black, 2px 2px black, 3px 3px black, 4px 4px black, 5px 5px black, 6px 6px black, 7px 7px black, 8px 8px black;
}

/* special size for the first item */
#animationWrapper .span1 {
font-size: 76px;
line-height: 0.8em;
}

#animationWrapper a:hover {
color: #fff ;
top: -3px;
left: -3px;
}

/* all spans become white */
#animationWrapper a:hover span {
color:#fff;
}

/* different colors for each SPAN */
#animationWrapper a:hover .span1 {
text-shadow: 1px 1px #58E, 2px 2px #58E, 3px 3px #58E, 4px 4px #58E, 5px 5px #58E, 6px 6px #58E, 7px 7px #58E, 8px 8px #58E, 9px 9px #58E, 10px 10px #58E, 11px 11px #58E;
}

#animationWrapper a:hover .span2 {
text-shadow: 1px 1px #F90, 2px 2px #F90, 3px 3px #F90, 4px 4px #F90, 5px 5px #F90, 6px 6px #F90, 7px 7px #F90, 8px 8px #F90, 9px 9px #F90, 10px 10px #F90, 11px 11px #F90;
}

#animationWrapper a:hover .span3 {
text-shadow: 1px 1px #3C7, 2px 2px #3C7, 3px 3px #3C7, 4px 4px #3C7, 5px 5px #3C7, 6px 6px #3C7, 7px 7px #3C7, 8px 8px #3C7, 9px 9px #3C7, 10px 10px #3C7, 11px 11px #3C7;
}

#animationWrapper a:hover .span4 {
text-shadow: 1px 1px #E58, 2px 2px #E58, 3px 3px #E58, 4px 4px #E58, 5px 5px #E58, 6px 6px #E58, 7px 7px #E58, 8px 8px #E58, 9px 9px #E58, 10px 10px #E58, 11px 11px #E58;
}
 
MessageHTML:

Code
<div id="animationWrapper">       <a href="/">
<span class="span1">Only</span>
<span class="span2">Free</span>
<span class="span3">uCoz</span>
<span class="span4">Templates</span>
</a>
</div>

CSS:
/* entire wrapper */
#animationWrapper  {
width:300px;
font-family:"proxima-nova-1","proxima-nova-2","Helvetica Neue","Arial",sans-serif;
background:#222;
padding:40px;
}

/* link which encapsulates SPANs */
#animationWrapper a {
font-weight: 800;
text-transform: uppercase;
font-size: 42px;
line-height: 0.9em;
margin-bottom: 10px;
display: block;
position: relative;
color: #E58;
text-decoration: none
}

/* span and a - "workers" */
#animationWrapper a, #animationWrapper span {
-webkit-transition: all 0.12s ease-out;
-moz-transition: all 0.12s ease-out;
-o-transition: all 0.12s ease-out;
-ms-transition: all 0.12s ease-out;
transition: all 0.12s ease-out;
}

#animationWrapper span {
display: block;
color: #555;
text-shadow: 1px 1px black, 2px 2px black, 3px 3px black, 4px 4px black, 5px 5px black, 6px 6px black, 7px 7px black, 8px 8px black;
}

/* special size for the first item */
#animationWrapper .span1 {
font-size: 76px;
line-height: 0.8em;
}

#animationWrapper a:hover {
color: #fff ;
top: -3px;
left: -3px;
}

/* all spans become white */
#animationWrapper a:hover span {
color:#fff;
}

/* different colors for each SPAN */
#animationWrapper a:hover .span1 {
text-shadow: 1px 1px #58E, 2px 2px #58E, 3px 3px #58E, 4px 4px #58E, 5px 5px #58E, 6px 6px #58E, 7px 7px #58E, 8px 8px #58E, 9px 9px #58E, 10px 10px #58E, 11px 11px #58E;
}

#animationWrapper a:hover .span2 {
text-shadow: 1px 1px #F90, 2px 2px #F90, 3px 3px #F90, 4px 4px #F90, 5px 5px #F90, 6px 6px #F90, 7px 7px #F90, 8px 8px #F90, 9px 9px #F90, 10px 10px #F90, 11px 11px #F90;
}

#animationWrapper a:hover .span3 {
text-shadow: 1px 1px #3C7, 2px 2px #3C7, 3px 3px #3C7, 4px 4px #3C7, 5px 5px #3C7, 6px 6px #3C7, 7px 7px #3C7, 8px 8px #3C7, 9px 9px #3C7, 10px 10px #3C7, 11px 11px #3C7;
}

#animationWrapper a:hover .span4 {
text-shadow: 1px 1px #E58, 2px 2px #E58, 3px 3px #E58, 4px 4px #E58, 5px 5px #E58, 6px 6px #E58, 7px 7px #E58, 8px 8px #E58, 9px 9px #E58, 10px 10px #E58, 11px 11px #E58;
}

Author - ernani
Date Added - 2014-05-22 в 5:04 AM
UcozBaze All Scripts And Templates » Scripts and Coding » Other » Duplicate CSS Effect ucoz (Duplicate CSS Effect ucoz)
  • Page 1 of 1
  • 1
Search:
                                                               
Statistics Forum
New Posts Popular topic Top Forum Users New User

type list biuro popierius (0)
type list kokiomis kaldromis miegate (0)
type list power bank įkroviklis (0)
type list vaikams pagalvės (0)
type list vartų automatika (0)
type list geriausi pirkiniai (0)
type list ekologiški, tvarūs daiktai kasdienai (0)
type list stovykla Lietuvoje (0)
type list namų apsauga (0)
type list šilumos siurblys oras vanduo (0)
type list powerbank išorinė baterija (0)
type list automobilių numelio rėmeliai (0)
type list pensijų pakopos (0)
type list šildymo sistemos (0)
type list dujinis katilas name (0)
type list karjeros testas (0)
type list drąskyklė katei (0)

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:
jokerzvobscure
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
dubroviena008
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
w4bzero
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
infoebrasha
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
karilekamo
Forum Posts: 10
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: 20
Comments: 0
Reputation: 0
Rank:


Site design by uCozBaze
uCozBaze © 2011-2016