Có màu hường rồi đấy em =))
Test widget công việc của TopDev
chịu quá “nam tính” Thêm chút dạ quang đi anh
Em thấy như cũ là đẹp. hường hường không hợp với những cái xung quanh
Hoặc cho hợp với những thành phần trên trang như này:
Do chữ chạy đã gây chú ý rồi nên màu sắc không cần phải nổi
Có cách nào ẩn nó không anh, nó chèn lên thanh điều hướng / số post của topic
Anh thích màu hường, chắc nhiều người cũng thích giống anh
- Thích màu hường
- Hường nam tính
0 voters
Thực ra anh không thích chữ chạy, anh thích 5s thay đổi nội dung 1 lần hơn. Anh sẽ hỏi lại TopDev
Anh cũng đang tính tới cái này. nó phải ngắn hơn hoặc nằm chỗ khác dể không đè lên thanh điều hướng.
kéo thanh điều hướng qua trái một tý #topic-progress {left: 210px ! important;}
bạn @ltd thêm trong phần custom HTML/CSS thử
Giao diện di động kéo cỡ nào thì vẫn bị đè
Với cái widget này làm sao để mà cho nó ngắn lại được nhỉ? Với màn hình nhỏ thì vẫn bị che
<script type='text/javascript'>
if(ATDOptions != undefined){
ATDOptions.opt.client_id = 'd6eca94dceb3f108e238dc530f18792e';
ATDOptions.opt.widget_width = 350;
ATDOptions.opt.widget_height = 400;
ATDOptions.opt.type = ['WIDGET'];
}else{
var ATDOptions = {};
ATDOptions.opt = {client_id:'d6eca94dceb3f108e238dc530f18792e', widget_width:350, widget_height:400, type: ['WIDGET']};
}
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = '//topdev.vn/affiliate/getIframe/client_id/d6eca94dceb3f108e238dc530f18792e';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
Đạt nghĩ là có thể chỉnh attribute nào đó để po
nó ngắn lại.
Chắc đoạn đó định nghĩa chiều rộng của widget
Đoạn đấy định nghĩa chiều rộng khi bung lên, chứ còn lúc nó thu nhỏ thì không có parameter nào cả. Chỗ này hình như chỉnh được bằng css.
Chiều rộng hiện tại là 300px
, mà thôi để mai xem tiếp, giờ khuya lắm rồi
#topdev_iframe_container {
width: 300px;
border-radius: 3px;
overflow: hidden;
line-height: normal;
}
#466994
Thấy cái widget này ngứa mắt quá, mà chắc chả có ai click vào đâu nhỉ. Để vài hôm nữa mà không thấy ai click thì cho ra đi luôn
Đạt muốn làm giống như StackOverflow, khi thảo luận về ngôn ngữ X thì hiển thị jobs về ngôn ngữ đó. Chứ hiển thị thế này không hay.
Thấy anh chèn ảnh vào poll hay quá ấn nhầm vào rồi
Lúc đầu em tưởng cái khung chat support ( dạo này đang hot cái đó sao á, chỗ nào cũng thấy ) chứ không có việc gì thì ngại ấn vào lắm a
Cập nhật trên mobile đã trống
Hay anh sửa code thành thế này nè
function detectmob() {
if( navigator.userAgent.match(/Android/i)
|| navigator.userAgent.match(/webOS/i)
|| navigator.userAgent.match(/iPhone/i)
|| navigator.userAgent.match(/iPad/i)
|| navigator.userAgent.match(/iPod/i)
|| navigator.userAgent.match(/BlackBerry/i)
|| navigator.userAgent.match(/Windows Phone/i)
){
return true;
}
else {
return false;
}
}
if(!detecmob())
{
if(ATDOptions != undefined){
ATDOptions.opt.client_id = 'd6eca94dceb3f108e238dc530f18792e';
ATDOptions.opt.widget_width = 350;
ATDOptions.opt.widget_height = 400;
ATDOptions.opt.type = ['WIDGET'];
}else{
var ATDOptions = {};
ATDOptions.opt = {client_id:'d6eca94dceb3f108e238dc530f18792e', widget_width:350, widget_height:400, type: ['WIDGET']};
}
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = '//topdev.vn/affiliate/getIframe/client_id/d6eca94dceb3f108e238dc530f18792e';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();}
Haha, lỗi, để sửa sau
Em gõ sai tên hàm detectmob á, vừa sửa lại.
Detect sao tịt luôn rồi =))
function detectmob() {
if( navigator.userAgent.match(/Android/i) ||
navigator.userAgent.match(/webOS/i) ||
navigator.userAgent.match(/iPhone/i) ||
navigator.userAgent.match(/iPad/i) ||
navigator.userAgent.match(/iPod/i) ||
navigator.userAgent.match(/BlackBerry/i) ||
navigator.userAgent.match(/Windows Phone/i) )
return true;
return false;
}
if(!detectmob()) {
if(ATDOptions != undefined){
ATDOptions.opt.client_id = 'd6eca94dceb3f108e238dc530f18792e';
ATDOptions.opt.widget_width = 350;
ATDOptions.opt.widget_height = 400;
ATDOptions.opt.type = ['WIDGET'];
}else{
var ATDOptions = {};
ATDOptions.opt = {client_id:'d6eca94dceb3f108e238dc530f18792e', widget_width:350, widget_height:400, type: ['WIDGET']};
}
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = '//topdev.vn/affiliate/getIframe/client_id/d6eca94dceb3f108e238dc530f18792e';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
}