Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i will mouseover to the clock. the clock display to the medium size in that page.


pls anybody help to the this problem.
Posted

1 solution

Hi Eliyas,

Go through the following code maybe it can solve your problem.


Here you have to define the default size of the clock:--
you can alter the look as you want.
.clockid{

width:150px;
height:150px;
background:#48e;
opacity: 0.3;
transition: 0.5s ease-in-out;

}

This is the code for mousehover.

.clockid:hover{
opacity: 1;
-webkit-transform: scale(1.1);
transform: scale(1.1);
}

clockid is the id of your clock.

Hope it was ur issue.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900