How to set Wechat h5 videos in Android version 7.1 and below to not be played in full screen

problem description

now the demand is for the video to fill the current page, and then slide down and there are still a few pages below, but when you play the video below Android 7.1, you can just jump to full screen and there is no way to drop down

.

the environmental background of the problems and what methods you have tried

tried Baidu to add all kinds of code, but it will still jump full screen under Android 7.1

related codes

/ / Please paste the code text below (do not replace the code with pictures)

* {
        margin: 0;
        padding: 0;
    }
    /*video{display:none}*/
    body {
        width: 100vw;
        height: 100vh;
    }
</style>

<body>
    <div class="box_video" style=" width:100%; height:100%;">
        <video id="testVideo"  width="100%" height="100%"
            autobufer="true"
             x5-video-player-fullscreen="true"
              utoplay="autoplay" 
              x-webkit-airplay="true"
               webkit-playsinline="true" 
               playsinline="true"
                preload="auto"
                 controls="controls"
                  playsinline="true" 
                  style= "object-fit: cover;">
            <source src="http://wap.cqddzx.com/topics/201807yxjz/images/bayue.mp4" type="video/mp4">
        </video>
    </div>

what result do you expect? What is the error message actually seen?

Mar.28,2021
Menu