简体   繁体   中英

Jquery / JavaScript / bootstrap continuous images slide effect

i would like to make an images slide effect as this website : https://www.hackages.io/

I don't know what is the exact name of the effect and If I can do it wiht Jquery / JavaScript or bootstrap ?

Thanks for helping me :D

They are not using any slider plugin or any js for this part.They are using css for this animation.Its a one image only and by using css

 animation: collage 60s linear infinite; 
    @keyframe collage
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    main.faea32ab.css:5
    100% {
        -webkit-transform: translate3d(-1800px,0,0);
        transform: translate3d(-1800px,0,0);
    }

using above css they are achieve this slider.If you want to add slider so try to use crawler.js slider for same effect.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM