Home page >> Related Tutorials >>Body

Self service advertising display code case | Applicable to any website

Author: A little Jack    Time: 2023-09-30 21:21:00    Browse: 921   

The advertising system supports easy payment and code payment platform, automatic operation, supports multiple categories of ads such as large banner, double column banner, text ads, etc., and supports customized insertion of website pages. You can insert whatever ads you want to display wherever you want, and plug and play!

See details of 66 yuan advertising system authorization: https://www.lkba.cn/shangpin/164.html

Self service advertising plug-in source code view and update: https://www.lkba.cn/jiaocheng/161.html

Tutorial for Self service Advertising Inside Page: https://www.lkba.cn/jiaocheng/166.html

Scheme ① Advertising code

 <script src="domain name/ggcj/module/Jack. js"></script> <!-- The js should be referenced to which page is advertising! --> <!-- Banner ad code start --> <div class="hengfu"> <iframe class="ggcj iframe" src="domain name/ggcj/engfugg. php" frameborder=no width=100% scrolling=no></iframe> </div> <!-- End of banner ad code --> <!-- Double column picture (small banner) advertising code start --> <div class="zuoyou"> <iframe class="ggcj iframe" src="domain name/ggcj/zuoyougg. php" frameborder=no width=100% scrolling=no></iframe> </div> <!-- Double column picture (small banner) end of advertisement code --> <!-- Text ad code start --> <div class="wenzi"> <iframe class="ggcj iframe" src="domain name/ggcj/wenzigg. php" frameborder=no width=100% scrolling=no></iframe> </div> <!-- End of text ad code -->

If the advertising domain name and the display site are not in the same domain name, you can only manually control the height!

The security policy problem cannot be solved. Even if the security policy of some browsers is solved, it is also limited. So use the following two end advertisements!

Scheme ② Advertising code

 <style>.dnwu {display: none;}@media(max-width:520px) {.dnwu {display: block;}.sjwu {display: none;}}</style> <!-- Banner ad start --> <div class="hengfu sjwu"><!-- Banner computer end, mobile phone end does not display --> <iframe src="domain name/ggcj/hengfugg. php" frameborder=no width=100% height=260 scrolling=no></iframe> </div> <div class="hengfu dnwu"><!-- The banner is not displayed on the mobile phone side and the computer side --> <iframe src="domain name/ggcj/hengfugg. php" frameborder=no width=100% height=140 scrolling=no></iframe> </div> <!-- Banner ad end --> <!-- Double column picture (small banner) start --> <div class="zuoyou sjwu"><!-- Double column banner computer end, mobile phone end does not display --> <iframe src="domain name/ggcj/zuoyougg. php" frameborder=no width=100% height=146 scrolling=no></iframe> </div> <div class="zuoyou dnwu"><!-- Double column banner is not displayed on the mobile phone side, but on the computer side --> <iframe src="domain name/ggcj/zuoyougg. php" frameborder=no width=100% height=96 scrolling=no></iframe> </div> <!-- Double column picture (small banner) end --> <!-- Text Ad Start --> <div class="wenzi sjwu"><!-- Text ads are not displayed on the computer side, but on the mobile side --> <iframe src="domain name/ggcj/wenzigg. php" frameborder=no width=100% height=76 scrolling=no></iframe> </div> <div class="wenzi dnwu"><!-- Text ads are not displayed on mobile phones and computers --> <iframe src="domain name/ggcj/wenzigg. php" frameborder=no width=100% height=144 scrolling=no></iframe> </div> <!-- End of text advertisement -->

Scheme 3 Two end advertising simplification case

 <!-- Banner ad code start --> <div class="hengfu"> <iframe id="myFrame hengfu" src="domain name/ggcj/hengfug. php" frameborder=no width=100% scrolling=no></iframe> </div> <!-- End of banner ad code --> <!-- Double column picture (small banner) advertising code start --> <div class="zuoyou"> <iframe id="myFrame zuoyou" src="domain name/ggcj/zuoyougg. php" frameborder=no width=100% scrolling=no></iframe> </div> <!-- Double column picture (small banner) end of advertisement code --> <!-- Text ad code start --> <div class="wenzi"> <iframe id="myFrame wenzi" src="domain name/ggcj/wenzigg. php" frameborder=no width=100% scrolling=no></iframe> </div> <!-- End of text ad code --> <script>     var height = (window.innerWidth < 768) ?  140 : 260; //Determine the height according to the equipment width     document.getElementById("myFrame-fengfu").height = height;     var height = (window.innerWidth < 768) ?  96 : 146; //Determine the height according to the equipment width     document.getElementById("myFrame-zuoyou").height = height;     var height = (window.innerWidth < 768) ?  144 : 76; //Determine the height according to the equipment width     document.getElementById("myFrame-wenzi").height = height; </script> In the js code, 140: 260, the former is the height of the mobile terminal, and the latter is the height of the PC terminal. You can set the height according to the number of your advertisements.

The codes can be placed separately. For example, if the homepage only wants text ads, just copy the code of the text ads and put it in!

Tips: The height/width of the advertising code is adaptive. Copy the source code to the advertising space to be displayed. After the advertisement is set up, the domain name/ggcj of each code should be changed to: your website/ggcj/

Note: If your website advertisement is incompatible or has errors, please add the css style of the div tree class name of each advertisement and modify the css of the self-service advertising station. The location of the advertising station css file is root directory/module/Jack.css. If you need to customize the specified style of the advertisement, you can contact Jack to pay for the customized style or use the page.


Text label: Self advertising plug-in   Website source code   Banner advertising   Text advertisement  
 A little Jack

A little Jack https://lkba.cn

The blogger focuses on Z-Blog website construction, website optimization, computer troubleshooting, reinstallation, optimization, maintenance system, etc, QQ/WX: 2126245521 (please specify the purpose)

Related articles

Previous:

Next:

No comment for this article - Welcome

 Please fill in the verification code

Processed : 0.047 SQL : 14