- 18, May 2024
- #1
Судя по заголовку, вы хотите показывать другой рекламный сценарий на форуме phpbb, если используете настольный компьютер или мобильный телефон.
У меня есть объявления, которые не реагируют.
У меня есть это...
http://blog.hubspot.com/marketing/site-content-only-mobile-viewers-can-see-ht
.
http://blog.hubspot.com/marketing/site-content-only-mobile-viewers-can-see-ht
<div class="mobileShow">
TEXT OR IMAGE FOR MOBILE HERE
</div>
This div will declare that this copy will respond only when the class is triggered. By adding the code below, the class will only be triggered when the user is on a mobile device. Add the following code in the HTML <head> section of your page:
<style type="text/css">
.mobileShow { display: none;}
/* Smartphone Portrait and Landscape */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px){ .mobileShow { display: inline;}}
</style>
Hide content on mobile devices.
To hide certain text or images that will not display on mobile devices, you will add similar code as before in your HTML <body>:
<div class="mobileHide">
TEXT OR IMAGE NOT FOR MOBILE HERE
</div>
Then, you will want to add the following code to your HTML <head> section:
<style type="text/css">
.mobileHide { display: inline;}
/* Smartphone Portrait and Landscape */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px){ .mobileHide { display: none;}}
</style>
Код (разметка):
Но это немного медленно, и мне было интересно, можно ли что-нибудь сделать лучше, а также как бы я использовал Скрытая информация :: Авторизуйтесь для просмотра ».