Coder Social home page Coder Social logo

l2n6h5b3 / prowebremote Goto Github PK

View Code? Open in Web Editor NEW
17.0 17.0 3.0 4.5 MB

ProWebRemote is a pure HTML/CSS/JS remote control application for ProPresenter 7, styled to look almost identical to ProPresenter 7 on macOS

HTML 1.85% CSS 19.23% JavaScript 24.82% Less 25.76% SCSS 28.34%
propresenter remote renewed-vision

prowebremote's People

Contributors

l2n6h5b3 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

prowebremote's Issues

Not connecting

Hi, we are interested to this project and trying to connect to our propresenter but it stayed in connecting state. Is this project functional?
image

Consider adding the option to display presentation slides only (a "focus" view)

One use I have for this is to allow a presenter to see their slides and advance them from where they are speaking. In this instance it's useful to be able to hide the side menus and just show the slide grid. a toggle is needed so that side menus can still be accessed. Attached example of the feature

var sideMenus = true;

function toggleSideMenus() {
    if (sideMenus) {
        // Decrease the width of the side menu to display it
        document.getElementById("sections").style.width = "0";
        document.getElementById("section-1").style.width = "0"; //264px
        document.getElementById("section-2").style.width = "0"; //284px
        document.getElementById("presentations").style.marginLeft = "0"; //265px
        document.getElementById("presentations").style.marginRight = "0"; //285px
    }
    else {
        // Increase the width of the side menu to display it
        document.getElementById("sections").style.width = "250px";
        document.getElementById("section-1").style.width = "264px"; 
        document.getElementById("section-2").style.width = "284px"; 
        document.getElementById("presentations").style.marginLeft = "265px";
        document.getElementById("presentations").style.marginRight = "285px";  
    }

    // Toggle side menus setting
    sideMenus = !sideMenus;
}
<div class="producer-controls">
                <a onclick="toggleSideMenus();">
                    <div class="control-container">
                        <div class="control-button"><i class="fas fa-th-large"></i></div>
                        <div class="control-text">Focus</div>
                    </div>
                </a>

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.