All Projects → miketricking → Bootstrap Image Hover

miketricking / Bootstrap Image Hover

Licence: mit
Image hover effects that work with or without bootstrap

Projects that are alternatives of or similar to Bootstrap Image Hover

File Upload With Preview
🖼 A simple file-upload utility that shows a preview of the uploaded image. Written in pure JavaScript. No dependencies. Works well with Bootstrap 4 or without a framework.
Stars: ✭ 352 (-58.97%)
Mutual labels:  image, bootstrap
Metro Ui Css
Impressive component library for expressive web development! Build responsive projects on the web with the first front-end component library in Metro Style. And now there are even more opportunities every day!
Stars: ✭ 6,843 (+697.55%)
Mutual labels:  bootstrap
Mailslurper
Local, web-based mail server application. Slurp mails into oblivion!
Stars: ✭ 920 (+7.23%)
Mutual labels:  bootstrap
Databook
A facebook for data
Stars: ✭ 26 (-96.97%)
Mutual labels:  bootstrap
React Optimized Image
Easy to use React components for optimized-images-loader / next-optimized-images.
Stars: ✭ 24 (-97.2%)
Mutual labels:  image
1294 Website
The Official Website of the First Robotics FRC Team "1294" Top Gun Robotics
Stars: ✭ 7 (-99.18%)
Mutual labels:  bootstrap
React Image
React.js <img> tag rendering with multiple fallback & loader support
Stars: ✭ 917 (+6.88%)
Mutual labels:  image
Repng
React component to PNG converter
Stars: ✭ 856 (-0.23%)
Mutual labels:  image
Cometa
Super fast, on-demand and on-the-fly, image processing.
Stars: ✭ 8 (-99.07%)
Mutual labels:  image
Watimage
🖼 PHP image manipulation class
Stars: ✭ 25 (-97.09%)
Mutual labels:  image
Ax5ui Uploader
jQuery file uploader, HTML5(IE9+, FF, Chrome, Safari) - http://ax5.io/ax5ui-uploader/
Stars: ✭ 25 (-97.09%)
Mutual labels:  bootstrap
Milog
Milog 是一基于 Ruby on Rails 的个人博客网站
Stars: ✭ 24 (-97.2%)
Mutual labels:  bootstrap
Select2 Bootstrap Theme
A Select2 v4 Theme for Bootstrap 3
Stars: ✭ 841 (-1.98%)
Mutual labels:  bootstrap
Py Style Transfer
🎨 Artistic neural style transfer with tweaks (pytorch).
Stars: ✭ 23 (-97.32%)
Mutual labels:  image
Tools
Arefly's Tools Source Code
Stars: ✭ 9 (-98.95%)
Mutual labels:  bootstrap
Eager Image Loader
The eager-loading for image files on the web page that loads the files according to your plan. This differs from the lazy-loading, for example, this can be used to avoid that the user waits for the loading.
Stars: ✭ 22 (-97.44%)
Mutual labels:  image
V Photoswipe
Vue plugin for image preview base on PhotoSwipe
Stars: ✭ 25 (-97.09%)
Mutual labels:  image
Remark Defsplit
plugin to change links and images to references with separate definitions
Stars: ✭ 7 (-99.18%)
Mutual labels:  image
Startbootstrap New Age
A web app landing page theme created by Start Bootstrap
Stars: ✭ 855 (-0.35%)
Mutual labels:  bootstrap
Image
Joomla Framework Image Package
Stars: ✭ 9 (-98.95%)
Mutual labels:  image

imagehover

html and css code for image hover effects with or without bootstrap

Have tested all individually in codepen using bootstrap.

TIPS:

If you wish to use these without bootstrap just remove the col classes from the top level div.

We need to consider mobile, the hovers that reveal social icons are great except for many these will be inaccessible as some mobiles do not understand a hover state. One way would be to put some visible soical icons else where and leave the hover social icons there as a nice effect for those who find them. Another option is to use CSS media queries so on small screen sizes the styles are already in place. They will not be able to see the cool effect but atlest you are making any content hidden by the hover styles more accessible.

For example on the first effect these are the styles that are applied during a :hover state. So you'd simply copy the styles again and wrap them inside and media query and remove the :hover part of it.

For example you would copy the following:

hovereffect:hover img { -ms-transform:scale(1.2); -webkit-transform:scale(1.2); transform:scale(1.2); }

.hovereffect:hover .overlay { opacity:1; filter:alpha(opacity=100); }

.hovereffect:hover h2,.hovereffect:hover a.info { opacity:1; filter:alpha(opacity=100); -ms-transform:translatey(0); -webkit-transform:translatey(0); transform:translatey(0); }

And then wrap it inside a media quiery and remove all the :hover from the styles.

@media (max-width: 750px) {

hovereffect img { -ms-transform:scale(1.2); -webkit-transform:scale(1.2); transform:scale(1.2); }

.hovereffect .overlay { opacity:1; filter:alpha(opacity=100); }

.hovereffect h2,.hovereffect a.info { opacity:1; filter:alpha(opacity=100); -ms-transform:translatey(0); -webkit-transform:translatey(0); transform:translatey(0); }

}

TO DO:

Make all the effects fully responsive. Some are already/some need slight changes depending on sizes.

Create the effects using SASS.

Special thanks to:

codrops (http://tympanus.net/codrops/) start boot strap (http://startbootstrap.com) bootstrap (http://getbootstrap.com/) font awesome (http://fortawesome.github.io/Font-Awesome/) github (http://github.com) unsplash for images (https://unsplash.com/) font squirrel (http://fontsquirrel.com/) codepen (http://codepen.com/)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].