Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

zoom image

ravegen

Apprentice
Advanced Member
Messages
85
Reaction score
0
Points
26
Hello po. Papaano po mag zoom ng website picture image using something like slider.
 
Hindi klaro yung about sa slider pero heto ang sagot ko sa tanong mo, pwede mong gawin yang zooming sa mga images sa website gamit ang JavaScript or CSS3.
 
pwede penge po ng sample
 
pwde TS.. sa CSS using transition to hover in transform using scale.. pag hover ng image lalaki yung scale ng image lagyan mo lng ng drop shadow para maganda pg nka scale.
 
TS, gaya ng sinabi ni WalterWhites, gamitin mo yung property ng CSS3 na Transition, simple lang yan.
 
img {
transition: transform .25s ease;
}

img:hover {
transform: scale(1.25);
}

sana po makatulong

palitan nyo na lang po ung "img" mag lagay ka na lang ng class kasi kapag img lahat ng image mo may hover na :D
 
Last edited:
Back
Top Bottom