[    [    [    [    [    [    [    b l o g g i n   s p a c e    wiki   ]    ]    ]    ]    ]    ]    ]

Difference between revisions of "Zoom"

From blogginpedia
Jump to navigation Jump to search
(Created page with "<style> .zoom { padding: 50px; background-color: green; transition: transform .2s; →‎Animation: width: 200px; height: 200px; margin: 0 auto; } .zoom:hover { transform: scale(1.5); →‎(150% zoom - Note: if the zoom is too large, it will go outside of the viewport): } </style> <div class="zoom"></div>")
 
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{DISPLAYTITLE:<font face="courier"><font color="hotpink">zoom</font></font>}}
This is a proof of concept showing how the html/css '''Zoom''' function within mediawiki can work. Additionally, the image is surrounded with a 5 pixel [[Colors|'''hot pink''']] border for shits and giggles.
Hover the image to see the '''Zoom''' effect...
<br><br>
<html>
<style>
<style>
.zoom {
.zoom {
   padding: 50px;
   padding: 50px;
   background-color: green;
  border: 5px solid hotpink;
   transition: transform .2s; /* Animation */
  background-image: url("https://bloggin.space/images/aoc/aoc1.png");
   width: 200px;
  background-position: center;
   height: 200px;
   background-size: cover;
   transition: transform .5s; /* Animation */
   width: 350px;
   height: 150px;
   margin: 0 auto;
   margin: 0 auto;
}
}
.zoom:hover {
.zoom:hover {
   transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
   transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport.  you can use other numbers to increase or decrease the zoom) */
}
}
</style>
</style>
<div class="zoom"></div>
</html>


<div class="zoom"></div>
 
{{Brains}}
[[Category:Help]]

Latest revision as of 03:21, 8 March 2025

This is a proof of concept showing how the html/css Zoom function within mediawiki can work. Additionally, the image is surrounded with a 5 pixel hot pink border for shits and giggles.

Hover the image to see the Zoom effect...


Brainstemplate.png
Zoom is Brain Learnin' Stuff. Yep!