【发布时间】:2013-07-04 09:35:33
【问题描述】:
在这个网站上Site link 我在右上角有一个联系信息和电话:移动设备的链接。我们如何以最好(最简单)的方式隐藏 tel: 桌面上的链接? 现在我有了这个:
CSS:
#header .contact-info1 { width: 253px; height: 50px; display: block; float: right; background: url(contact-info1.png) 0 0 no-repeat transparent; margin-right: 39px; margin- top: 110px; }
#header .contact-info2 { width: 292px; height: 51px; display: block; float: right; background: url(contact-info2.png) 0 0 no-repeat transparent; margin-right: 0px; margin- top: 30px; }
@media only screen and (max-device-width: 480px) {
#header .contact-info1-mobile { width: 253px; height: 50px; display: block; float: right; cursor: pointer; background: url(contact-info1.png) 0 0 no-repeat transparent; margin-right: 39px; margin-top: 110px; }
#header .contact-info2-mobile { width: 292px; height: 51px; display: block; float: right; cursor: pointer; background: url(contact-info2.png) 0 0 no-repeat transparent; margin-right: 0px; margin-top: 30px; }
HTML:
<a href="tel:+491796737741" class="contact-info1-mobile" ></a>
<div style="clear:right"></div>
<a href="mailto:info@rw-fliesen.com" class="contact-info2-mobile" ></a>
目前我正在隐藏台式机的链接,但如何隐藏台式机的链接并同时显示台式机的联系人图像?
【问题讨论】:
-
嘿,我的 SGS3 手机在窄(垂直)模式下的设备宽度为 720 像素,而 SGS4 有 1080 像素(垂直)和 1920 像素水平。如果您在屏幕像素上检测到移动设备,它会在很短的时间内变坏。
-
您可以使用
javascript或jquery来实现这一点,点击这里see -
好的,谢谢。有没有可以推荐的链接源在 javascript 或 jquery 中执行?
-
点击我评论上的
see链接