Git Product home page Git Product logo

Comments (9)

yuresko avatar yuresko commented on June 2, 2024 1

How did you get the scanner to work in portrait? No matter what, it only scans in landscape. iOS 15 seems to have changed something.

from instascan.

ibnusulaiman83 avatar ibnusulaiman83 commented on June 2, 2024 1

https://design.lovol.cn/test/

not working after i click this url sir

from instascan.

RileyIsOnGitHub avatar RileyIsOnGitHub commented on June 2, 2024

@yuresko is the basis of your code the same as mine or different? Could I see what you're doing?

from instascan.

yuresko avatar yuresko commented on June 2, 2024

This is how I'm calling it in the html...and it's using instascan.min.js from the releases

function startCam() {
    var scanner = new Instascan.Scanner({
        video: document.getElementById('preview'),
        scanPeriod: 5,
        mirror: false,
        refractoryPeriod: 10000
    });
    scanner.addListener('scan', function(content) {
        document.getElementById("qrusername").value = content;
        // alert(content);
        //window.open(content);
        //window.location.href=content;
    });
    Instascan.Camera.getCameras().then(function(cameras) {
        if (cameras.length > 0) {
            scanner.start(cameras[1]);
            $('[name="options"]').on('change', function() {
                if ($(this).val() == 1) {
                    if (cameras[1] != "") {
                        scanner.start(cameras[1]);
                    } else {
                        alert('No Front camera found!');
                    }
                } else if ($(this).val() == 2) {
                    if (cameras[0] != "") {
                        scanner.start(cameras[0]);
                    } else {
                        alert('No Back camera found!');
                    }
                }
            });
        } else {
            console.error('No cameras found.');
            alert('No cameras found.');
        }
    }).catch(function(e) {
        console.error(e);
        alert(e);
    });
}

from instascan.

RileyIsOnGitHub avatar RileyIsOnGitHub commented on June 2, 2024

@yuresko you've got a few differences in your code compared to my code.

I am not using the instascan.min.js from the releases. I switched to one I found in the forums that I have attached.

instascan.min.zip
.

from instascan.

yuresko avatar yuresko commented on June 2, 2024

Ahh gotchya...I tried yours and it did the same thing. No portrait, only landscape. Thanks for your help, will keep digging.

from instascan.

RileyIsOnGitHub avatar RileyIsOnGitHub commented on June 2, 2024

@yuresko here's a css workaround I figured out.

CSS
`

<style> #warning-message { display: none; } @media only screen and (orientation:portrait){ #warning-message { display:none; } } @media only screen and (orientation:landscape){ #container { display:none; } #warning-message { display:block; } } </style>

`

HTML
<div id="warning-message" style="text-align: center;"> <p> TEXT EXPLAINING PAGE ONLY WORKS IN PORTAIT </p> </div>

from instascan.

huangsong avatar huangsong commented on June 2, 2024

@RileyIsOnGitHub https://github.com/huangsong/instascan/tree/master/docs there is my test code. it work well on my iphone7p 15.2 and pixel3 android 12

from instascan.

huangsong avatar huangsong commented on June 2, 2024

https://design.lovol.cn/test/

not working after i click this url sir

https://github.com/huangsong/instascan/tree/master/docs

from instascan.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.